peiyongz 2002/08/21 11:46:43 Modified: c/scripts packageBinaries.pl Log: build on Itanium w/o cygwin Revision Changes Path 1.97 +8 -2 xml-xerces/c/scripts/packageBinaries.pl Index: packageBinaries.pl =================================================================== RCS file: /home/cvs/xml-xerces/c/scripts/packageBinaries.pl,v retrieving revision 1.96 retrieving revision 1.97 diff -u -r1.96 -r1.97 --- packageBinaries.pl 16 Aug 2002 16:50:36 -0000 1.96 +++ packageBinaries.pl 21 Aug 2002 18:46:43 -0000 1.97 @@ -72,8 +72,14 @@ chomp($platform); close (PLATFORM); +#set platform variable if on windows 64bit +my $return_code = system( "ls" ); +if ($return_code != 0) +{ $platform = "win64bit"; +} + #Fix the backslashes on the Windows platform -if ($platform ne "") +if ($platform ne "win64bit") { $XERCESCROOT =~ s/\\/\//g; $ICUROOT =~ s/\\/\//g; @@ -95,7 +101,7 @@ # Compiler: Intel's cl and/or ecl # cygwin: Not Available # -if ($platform eq "" ) +if ($platform eq "win64bit" ) { if ($opt_x ne "" && $opt_x ne "cl" && $opt_x ne "ecl") {
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]