diff options
author | Ulf Lamping <ulf.lamping@web.de> | 2006-10-29 17:19:52 +0000 |
---|---|---|
committer | Ulf Lamping <ulf.lamping@web.de> | 2006-10-29 17:19:52 +0000 |
commit | 647533a5efeba5a4c2002eaaa8edcc5ca596015e (patch) | |
tree | 1e17d9ca69d0058bc9a860e5ca9205e87c2e2dd8 /asn1/ocsp | |
parent | c62cb0006d03daf020d523601c31e906af355dd9 (diff) | |
download | wireshark-647533a5efeba5a4c2002eaaa8edcc5ca596015e.tar.gz wireshark-647533a5efeba5a4c2002eaaa8edcc5ca596015e.tar.bz2 wireshark-647533a5efeba5a4c2002eaaa8edcc5ca596015e.zip |
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
Diffstat (limited to 'asn1/ocsp')
-rw-r--r-- | asn1/ocsp/Makefile.nmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/asn1/ocsp/Makefile.nmake b/asn1/ocsp/Makefile.nmake index db84318cc0..98f6f42956 100644 --- a/asn1/ocsp/Makefile.nmake +++ b/asn1/ocsp/Makefile.nmake @@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES) $(DISSECTOR_FILES): ../../tools/asn2wrs.py OCSP.asn packet-ocsp-template.c packet-ocsp-template.h ocsp.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c ocsp.cnf -s packet-ocsp-template OCSP.asn + $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c ocsp.cnf -s packet-ocsp-template OCSP.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 |