diff options
author | Rüdiger Timm <rt@openoffice.org> | 2008-08-27 10:30:21 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2008-08-27 10:30:21 +0000 |
commit | dee262f3aba2ff37788b9e5c6807e2c2a820562f (patch) | |
tree | ca2b437a476881a79f75699d951e8c40bd3371c6 /solenv/bin/modules/installer/parameter.pm | |
parent | e353a05d8c6e53ef526141954f6fc29b54ce18f8 (diff) |
INTEGRATION: CWS native185_DEV300 (1.55.54); FILE MERGED
2008/08/13 10:13:06 is 1.55.54.1: #i92713#
Diffstat (limited to 'solenv/bin/modules/installer/parameter.pm')
-rw-r--r-- | solenv/bin/modules/installer/parameter.pm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/solenv/bin/modules/installer/parameter.pm b/solenv/bin/modules/installer/parameter.pm index cb40821e5a4b..9c90735c7d6b 100644 --- a/solenv/bin/modules/installer/parameter.pm +++ b/solenv/bin/modules/installer/parameter.pm @@ -8,7 +8,7 @@ # # $RCSfile: parameter.pm,v $ # -# $Revision: 1.55 $ +# $Revision: 1.56 $ # # This file is part of OpenOffice.org. # @@ -424,6 +424,12 @@ sub setglobalvariables installer::systemactions::create_directory_with_privileges($installer::globals::temppath, "777"); my $dirsave = $installer::globals::temppath; + if ( $installer::globals::compiler =~ /^unxmac/ ) + { + my $localcall = "chmod 777 $installer::globals::temppath \>\/dev\/null 2\>\&1"; + system($localcall); + } + $installer::globals::temppath = $installer::globals::temppath . $installer::globals::separator . "i"; $installer::globals::temppath = installer::systemactions::create_pid_directory($installer::globals::temppath); push(@installer::globals::removedirs, $installer::globals::temppath); |