From 647533a5efeba5a4c2002eaaa8edcc5ca596015e Mon Sep 17 00:00:00 2001 From: Ulf Lamping 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. svn path=/trunk/; revision=19730 --- asn1/h450/Makefile.nmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'asn1/h450') diff --git a/asn1/h450/Makefile.nmake b/asn1/h450/Makefile.nmake index 92ee7e3eeb..25377f8d6d 100644 --- a/asn1/h450/Makefile.nmake +++ b/asn1/h450/Makefile.nmake @@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES) $(DISSECTOR_FILES): ../../tools/asn2wrs.py h4501.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h $(PROTOCOL_NAME).cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -e -p h450 -c h450.cnf -s packet-h450-template h4501.asn + $(PYTHON) "../../tools/asn2wrs.py" -e -p h450 -c h450.cnf -s packet-h450-template h4501.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 -- cgit v1.2.1