aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/pkinit
diff options
context:
space:
mode:
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2006-10-29 17:19:52 +0000
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2006-10-29 17:19:52 +0000
commit754a4d63e7003dc78b60f91d35ed2baa3b3288f2 (patch)
tree1e17d9ca69d0058bc9a860e5ca9205e87c2e2dd8 /asn1/pkinit
parent195c06d6ea33ed296a01886671812dd67c619580 (diff)
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
Diffstat (limited to 'asn1/pkinit')
-rw-r--r--asn1/pkinit/Makefile.nmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/asn1/pkinit/Makefile.nmake b/asn1/pkinit/Makefile.nmake
index 116aeba6ff..b0c4d50740 100644
--- a/asn1/pkinit/Makefile.nmake
+++ b/asn1/pkinit/Makefile.nmake
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
$(DISSECTOR_FILES): ../../tools/asn2wrs.py PKINIT.asn packet-pkinit-template.c packet-pkinit-template.h pkinit.cnf
!IFDEF PYTHON
- $(PYTHON) ../../tools/asn2wrs.py -e -b -p $(PROTOCOL_NAME) -c pkinit.cnf -s packet-pkinit-template PKINIT.asn
+ $(PYTHON) "../../tools/asn2wrs.py" -e -b -p $(PROTOCOL_NAME) -c pkinit.cnf -s packet-pkinit-template PKINIT.asn
!ELSE
@echo Error: You need Python to use asn2wrs.py
@exit 1