summaryrefslogtreecommitdiff
path: root/Makefile.nmake
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2011-02-17 21:21:40 +0000
committerGuy Harris <guy@alum.mit.edu>2011-02-17 21:21:40 +0000
commit0bb81b40d53dae21528e97c5169ea504b59e7277 (patch)
treef13cf635809e92e3d3558aee6deba1bed64a3e0d /Makefile.nmake
parentda198b3083eff55bbe191f84d37a2981a2aa19ce (diff)
downloadwireshark-0bb81b40d53dae21528e97c5169ea504b59e7277.tar.gz
Apparently, if the argument to the cd command in an nmake file contains
spaces, it needs to be quoted, the fact that, if the argument to a cd command typed at cmd.exe contains spaces, it *doesn't* need to be quoted nonwithstanding. svn path=/trunk/; revision=35987
Diffstat (limited to 'Makefile.nmake')
-rw-r--r--Makefile.nmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.nmake b/Makefile.nmake
index 3766637331..1e69851559 100644
--- a/Makefile.nmake
+++ b/Makefile.nmake
@@ -893,7 +893,7 @@ clean_setup:
rm -r -f upx303w
rm -r -f GeoIP-1.4.5ws
rm -r -f GeoIP-1.4.6-win??ws
- cd $(MAKEDIR)
+ cd "$(MAKEDIR)"
################################################################################
# Prepare the debug trees for running Wireshark/Tshark from there.