tng 2002/08/27 11:36:58 Modified: c/scripts packageBinaries.pl Log: Fix: to recognize backslash when stripping the zipFiles. Revision Changes Path 1.99 +1 -1 xml-xerces/c/scripts/packageBinaries.pl Index: packageBinaries.pl =================================================================== RCS file: /home/cvs/xml-xerces/c/scripts/packageBinaries.pl,v retrieving revision 1.98 retrieving revision 1.99 diff -u -r1.98 -r1.99 --- packageBinaries.pl 23 Aug 2002 16:33:01 -0000 1.98 +++ packageBinaries.pl 27 Aug 2002 18:36:57 -0000 1.99 @@ -90,7 +90,7 @@ #Construct the name of the zip file by extracting the last directory name $zipfiles = $targetdir; -$zipfiles =~ s/.*\/([\w-\.]*)$/$1/g; +$zipfiles =~ s/.*(\/|\\)([\w-\.]*)$/$2/g; $zipfiles = $zipfiles . "/*"; $buildmode = "Release"; # Universally, why do you want to package Debug builds anyway?
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]