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 /asn1/x509ce | |
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 'asn1/x509ce')
-rw-r--r-- | asn1/x509ce/Makefile.nmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/asn1/x509ce/Makefile.nmake b/asn1/x509ce/Makefile.nmake index 4887b45b36..64e8083e60 100644 --- a/asn1/x509ce/Makefile.nmake +++ b/asn1/x509ce/Makefile.nmake @@ -37,6 +37,6 @@ fix_eol: generate_dissector del /f packet-$(PROTOCOL_NAME).c.tmp packet-$(PROTOCOL_NAME).h.tmp copy_files: generate_dissector fix_eol - xcopy packet-$(PROTOCOL_NAME).c ..\..\epan\dissectors /d /y - xcopy packet-$(PROTOCOL_NAME).h ..\..\epan\dissectors /d /y + xcopy packet-$(PROTOCOL_NAME).c ..\..\epan\dissectors /d + xcopy packet-$(PROTOCOL_NAME).h ..\..\epan\dissectors /d |