summaryrefslogtreecommitdiff
path: root/config.nmake
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2005-09-07 13:26:23 +0000
committerGerald Combs <gerald@wireshark.org>2005-09-07 13:26:23 +0000
commitadce5ed6a569f05aaaed535cee5e224623349269 (patch)
tree3e17edb0ddf81333b090ab63698fcb64517847a0 /config.nmake
parentcd88fb82d8389c2128334c9747113b509c993541 (diff)
downloadwireshark-adce5ed6a569f05aaaed535cee5e224623349269.tar.gz
Set "COPYCMD=/Y" and remove the "/Y" from each XCOPY command in order
to fix compilation under Windows NT. This should fix bug 403. The changes were made using "find . -name Makefile.nmake | xargs perl -pi.bak -e 's: /y::i'". They appear to work under XP, but if anything broke I blame Larry Wall. svn path=/trunk/; revision=15710
Diffstat (limited to 'config.nmake')
-rw-r--r--config.nmake5
1 files changed, 5 insertions, 0 deletions
diff --git a/config.nmake b/config.nmake
index c97593b8a4..fa1393fbb7 100644
--- a/config.nmake
+++ b/config.nmake
@@ -228,6 +228,11 @@ MAKENSIS_MODERN_UI=USE
#
#HHC="C:/Program Files/HTML Help Workshop/hhc.exe"
+# According to http://bugs.ethereal.com/bugzilla/show_bug.cgi?id=403
+# XCOPY under Windows NT doesn't support the "/Y" flag. This works
+# around that bug.
+COPYCMD=/Y
+
# If you don't want to build libethereal.dll, you should comment out the
# following line. (Note: for plugin support this option must stay activated)
ENABLE_LIBETHEREAL=USE