Kaydet (Commit) 285c7876 authored tarafından Vladimir Glazounov's avatar Vladimir Glazounov

INTEGRATION: CWS pj69 (1.36.144); FILE MERGED

2006/12/18 13:17:48 hjs 1.36.144.1: #i72646# avoid calling cygpath too often
üst 6f562872
...@@ -4,9 +4,9 @@ ...@@ -4,9 +4,9 @@
# #
# $RCSfile: parameter.pm,v $ # $RCSfile: parameter.pm,v $
# #
# $Revision: 1.37 $ # $Revision: 1.38 $
# #
# last change: $Author: hr $ $Date: 2007-01-02 15:23:35 $ # last change: $Author: vg $ $Date: 2007-01-09 11:18:59 $
# #
# The Contents of this file are made available subject to # The Contents of this file are made available subject to
# the terms of GNU Lesser General Public License Version 2.1. # the terms of GNU Lesser General Public License Version 2.1.
...@@ -420,6 +420,12 @@ sub setglobalvariables ...@@ -420,6 +420,12 @@ sub setglobalvariables
push(@installer::globals::removedirs, $installer::globals::temppath); push(@installer::globals::removedirs, $installer::globals::temppath);
$installer::globals::temppath = $installer::globals::temppath . $installer::globals::separator . $installer::globals::compiler . $installer::globals::productextension; $installer::globals::temppath = $installer::globals::temppath . $installer::globals::separator . $installer::globals::compiler . $installer::globals::productextension;
installer::systemactions::create_directory($installer::globals::temppath); installer::systemactions::create_directory($installer::globals::temppath);
if ( $^O =~ /cygwin/i )
{
$installer::globals::cyg_temppath = $installer::globals::temppath;
$installer::globals::cyg_temppath =~ s/\\/\\\\/g;
chomp( $installer::globals::cyg_temppath = qx{cygpath -w "$installer::globals::cyg_temppath"} );
}
$installer::globals::temppathdefined = 1; $installer::globals::temppathdefined = 1;
} }
else else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment