summaryrefslogtreecommitdiff
path: root/packaging/u3
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2008-08-08 17:15:34 +0000
committerGerald Combs <gerald@wireshark.org>2008-08-08 17:15:34 +0000
commitdfef2ab6326d7322a3bf54aa83dcf62e16027745 (patch)
treea6e8021efe7c179e09e9b64f857d6ff05598282f /packaging/u3
parent6d9728e98d1622fbc729e7ae1e02b081479b2267 (diff)
downloadwireshark-dfef2ab6326d7322a3bf54aa83dcf62e16027745.tar.gz
When copying and renaming files, put quotes around the sources and
destinations. svn path=/trunk/; revision=25957
Diffstat (limited to 'packaging/u3')
-rw-r--r--packaging/u3/win32/makenmake.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/packaging/u3/win32/makenmake.pl b/packaging/u3/win32/makenmake.pl
index 60796ae9ac..781c878a8b 100644
--- a/packaging/u3/win32/makenmake.pl
+++ b/packaging/u3/win32/makenmake.pl
@@ -75,14 +75,14 @@ while($line = <>) {
$u3fileloc = "\$(" . uc $1 . ")";
}
- print "\t\$(COPY) $file $u3fileloc$dir \$(COPY_FLAGS)\n";
+ print "\t\$(COPY) \"$file\" \"$u3fileloc$dir\" \$(COPY_FLAGS)\n";
if($line =~ /oname=(\S+)/) { # override this filename
$oname = $1;
$file =~ /\\(.*)$/;
$name = $1;
- print "\t\$(MOVE) $u3fileloc$dir\\$name $u3fileloc$dir\\$oname\n";
+ print "\t\$(MOVE) \"$u3fileloc$dir\\$name\" \"$u3fileloc$dir\\$oname\"\n";
}