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/pkix1implicit/Makefile.nmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'asn1/pkix1implicit') diff --git a/asn1/pkix1implicit/Makefile.nmake b/asn1/pkix1implicit/Makefile.nmake index bfa797444c..b6718cb304 100644 --- a/asn1/pkix1implicit/Makefile.nmake +++ b/asn1/pkix1implicit/Makefile.nmake @@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES) $(DISSECTOR_FILES): ../../tools/asn2wrs.py PKIX1IMPLICIT93.asn packet-pkix1implicit-template.c packet-pkix1implicit-template.h pkix1implicit.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -e -b -p $(PROTOCOL_NAME) -c pkix1implicit.cnf -s packet-pkix1implicit-template PKIX1IMPLICIT93.asn + $(PYTHON) "../../tools/asn2wrs.py" -e -b -p $(PROTOCOL_NAME) -c pkix1implicit.cnf -s packet-pkix1implicit-template PKIX1IMPLICIT93.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 -- cgit v1.2.3