summaryrefslogtreecommitdiff
path: root/solenv
diff options
context:
space:
mode:
authorAndras Timar <andras.timar@collabora.com>2015-09-06 01:31:01 -0700
committerAndras Timar <andras.timar@collabora.com>2021-03-30 16:33:40 +0200
commite16917004a4685b46ecc425eebdad2286928cfc9 (patch)
tree1e5b6c8a7203611440d25b6fc6db4fbf975ac385 /solenv
parent531a27c2dfb02f70680e9f40df61667cc76c126c (diff)
[cp] hack to fix an MSP creation error
(cherry picked from commit ded9e51fda12d01e381a5353e6ee412ec89548ff) (cherry picked from commit 07d93f57b99c077d6b3062ddafea56e021122111) Change-Id: Ifa833d3adfce5dcc247a8c6e2f972c0638e5c05c
Diffstat (limited to 'solenv')
-rw-r--r--solenv/bin/modules/installer/windows/admin.pm2
1 files changed, 2 insertions, 0 deletions
diff --git a/solenv/bin/modules/installer/windows/admin.pm b/solenv/bin/modules/installer/windows/admin.pm
index 27e4ba7c3232..54396ac27835 100644
--- a/solenv/bin/modules/installer/windows/admin.pm
+++ b/solenv/bin/modules/installer/windows/admin.pm
@@ -287,6 +287,8 @@ sub create_directory_structure
{
if ( ! exists($fullpathhash{$dir}) ) { $fullpathhash{$dir} = $targetdir; }
}
+ # FIXME why is this hack needed? ERROR: Did not find full directory path for dir: "ystemFolder_x86_VC.194841A2_D0F2_3B96_9F71_05BA91BEA0FA"
+ $fullpathhash{"SystemFolder_x86_VC.194841A2_D0F2_3B96_9F71_05BA91BEA0FA"} = $targetdir . $installer::globals::separator . "System";
return \%fullpathhash;
}