diff options
author | Ingo Schmidt <is@openoffice.org> | 2010-05-28 12:31:50 +0200 |
---|---|---|
committer | Ingo Schmidt <is@openoffice.org> | 2010-05-28 12:31:50 +0200 |
commit | 3496d8389e25cd75f98d4a5359d1405b323f2325 (patch) | |
tree | 6d77ee1b31efe0a1df084d61f381c00e8c20f801 | |
parent | a76e94f5f77b03807a01635d9d95eb0fb31fc934 (diff) |
native305 #i92977# new Windows INSTALLLOCATION settings
-rw-r--r-- | solenv/bin/modules/installer/windows/admin.pm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/solenv/bin/modules/installer/windows/admin.pm b/solenv/bin/modules/installer/windows/admin.pm index d22a1299e9c9..3564770e76ba 100644 --- a/solenv/bin/modules/installer/windows/admin.pm +++ b/solenv/bin/modules/installer/windows/admin.pm @@ -419,6 +419,12 @@ sub create_directory_structure foreach $dir (@startparents) { create_directory_tree($dir, \%fullpathhash, $targetdir, $dirhash); } + # Also adding the pathes of the startparents + foreach $dir (@startparents) + { + if ( ! exists($fullpathhash{$dir}) ) { $fullpathhash{$dir} = $targetdir; } + } + return \%fullpathhash; } |