Make make-jars.pl more tolerant of folder names b=336056 r=bsmedberg

git-svn-id: svn://10.0.0.236/trunk@195853 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
neil%parkwaycc.co.uk
2006-05-02 23:12:53 +00:00
parent 76f42e054e
commit 6ec3f12770

View File

@@ -444,7 +444,7 @@ sub EnsureFileInDir
#print "copying $destPath, from $srcPath\n";
my $dir = "";
my $file;
if ($destPath =~ /([\w\d.\-\_\\\/\+]+)[\\\/]([\w\d.\-\_]+)/) {
if ($destPath =~ /(.+)[\\\/]([\w\d.\-\_]+)/) {
$dir = $1;
$file = $2;
}