diff options
author | Ingo Schmidt <is@openoffice.org> | 2010-07-30 13:49:54 +0200 |
---|---|---|
committer | Ingo Schmidt <is@openoffice.org> | 2010-07-30 13:49:54 +0200 |
commit | d070c1a0ff7e986e4b541549eab9ce373f756f72 (patch) | |
tree | 77978c62df90fd1dd6ee64ce16319152f6cb0a8f /solenv/bin/modules/installer/windows | |
parent | 9fb75fb322f93b9c73da4d467c44b4f08a468853 (diff) |
native323 #i113447# setting Windows update path correctly
Diffstat (limited to 'solenv/bin/modules/installer/windows')
-rw-r--r-- | solenv/bin/modules/installer/windows/property.pm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/solenv/bin/modules/installer/windows/property.pm b/solenv/bin/modules/installer/windows/property.pm index e9f122a54d86..35866103d9fa 100644 --- a/solenv/bin/modules/installer/windows/property.pm +++ b/solenv/bin/modules/installer/windows/property.pm @@ -316,6 +316,11 @@ sub set_important_properties { my $onepropertyline = "OFFICEDIRHOSTNAME" . "\t" . $installer::globals::officedirhostname . "\n"; push(@{$propertyfile}, $onepropertyline); + + my $localofficedirhostname = $installer::globals::officedirhostname; + $localofficedirhostname =~ s/\//\\/g; + $onepropertyline = "OFFICEDIRHOSTNAME_" . "\t" . $localofficedirhostname . "\n"; + push(@{$propertyfile}, $onepropertyline); } if ( $installer::globals::sundirhostname ) |