diff options
author | Gerald Combs <gerald@wireshark.org> | 2005-09-07 13:26:23 +0000 |
---|---|---|
committer | Gerald Combs <gerald@wireshark.org> | 2005-09-07 13:26:23 +0000 |
commit | adce5ed6a569f05aaaed535cee5e224623349269 (patch) | |
tree | 3e17edb0ddf81333b090ab63698fcb64517847a0 /config.nmake | |
parent | cd88fb82d8389c2128334c9747113b509c993541 (diff) | |
download | wireshark-adce5ed6a569f05aaaed535cee5e224623349269.tar.gz wireshark-adce5ed6a569f05aaaed535cee5e224623349269.tar.bz2 wireshark-adce5ed6a569f05aaaed535cee5e224623349269.zip |
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.nmake | 5 |
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 |