From 754a4d63e7003dc78b60f91d35ed2baa3b3288f2 Mon Sep 17 00:00:00 2001 From: ulfl Date: Sun, 29 Oct 2006 17:19:52 +0000 Subject: put every python script name into "" so the call won't fail on Win32 native python. The problem is the slash in e.g.: @$(PYTHON) ../../tools/make-dissector-reg.py is interpreted as an option instead of being part of the path. I didn't wanted to use backslashes as this might introduce new problems with cygwin's python port. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19730 f5534014-38df-0310-8fa8-9805f1628bb7 --- asn1/mms/Makefile.nmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'asn1/mms/Makefile.nmake') diff --git a/asn1/mms/Makefile.nmake b/asn1/mms/Makefile.nmake index 996fbb972c..83806a557e 100644 --- a/asn1/mms/Makefile.nmake +++ b/asn1/mms/Makefile.nmake @@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES) $(DISSECTOR_FILES): ../../tools/asn2wrs.py mms.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h $(PROTOCOL_NAME).cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template mms.asn + $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template mms.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 -- cgit v1.2.3