aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.nmake
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2011-02-17 21:21:40 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2011-02-17 21:21:40 +0000
commit6a7492280d2c1fb2900b36317fe5084cf87351d7 (patch)
treef13cf635809e92e3d3558aee6deba1bed64a3e0d /Makefile.nmake
parent64fe41016cd67de7d108abfe06ca66641ee53f20 (diff)
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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35987 f5534014-38df-0310-8fa8-9805f1628bb7
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.