put every python script name into "" so the call won't fail on Win32 native python.
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>
Sun, 29 Oct 2006 17:19:52 +0000 (17:19 +0000)
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>
Sun, 29 Oct 2006 17:19:52 +0000 (17:19 +0000)
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

83 files changed:
asn1/MAP_Dialogue/Makefile.nmake
asn1/acp133/Makefile.nmake
asn1/acse/Makefile.nmake
asn1/ansi_map/Makefile.nmake
asn1/camel/Makefile.nmake
asn1/cdt/Makefile.nmake
asn1/cmip/Makefile.nmake
asn1/cms/Makefile.nmake
asn1/dap/Makefile.nmake
asn1/disp/Makefile.nmake
asn1/dop/Makefile.nmake
asn1/dsp/Makefile.nmake
asn1/ess/Makefile.nmake
asn1/ftam/Makefile.nmake
asn1/ftbp/Makefile.nmake
asn1/gnm/Makefile.nmake
asn1/gsm_ss/Makefile.nmake
asn1/gsmmap/Makefile.nmake
asn1/h225/Makefile.nmake
asn1/h235/Makefile.nmake
asn1/h245/Makefile.nmake
asn1/h248/Makefile.nmake
asn1/h450/Makefile.nmake
asn1/inap/Makefile.nmake
asn1/ldap/Makefile.nmake
asn1/logotype-cert-extn/Makefile.nmake
asn1/mms/Makefile.nmake
asn1/nbap/Makefile.nmake
asn1/ns-cert-exts/Makefile.nmake
asn1/ocsp/Makefile.nmake
asn1/pkcs1/Makefile.nmake
asn1/pkinit/Makefile.nmake
asn1/pkix1explicit/Makefile.nmake
asn1/pkix1implicit/Makefile.nmake
asn1/pkixcmp/Makefile.nmake
asn1/pkixcrmf/Makefile.nmake
asn1/pkixproxy/Makefile.nmake
asn1/pkixqualified/Makefile.nmake
asn1/pkixtsp/Makefile.nmake
asn1/pres/Makefile.nmake
asn1/ranap/Makefile.nmake
asn1/rnsap/Makefile.nmake
asn1/ros/Makefile.nmake
asn1/rrlp/Makefile.nmake
asn1/rtse/Makefile.nmake
asn1/s4406/Makefile.nmake
asn1/smrse/Makefile.nmake
asn1/snmp/Makefile.nmake
asn1/spnego/Makefile.nmake
asn1/tcap/Makefile.nmake
asn1/ulp/Makefile.nmake
asn1/umts_rrc/Makefile.nmake
asn1/umts_rrc_Internode-defs/Makefile.nmake
asn1/umts_rrc_ies/Makefile.nmake
asn1/umts_rrc_pdu_def/Makefile.nmake
asn1/wlancertextn/Makefile.nmake
asn1/x411/Makefile.nmake
asn1/x420/Makefile.nmake
asn1/x509af/Makefile.nmake
asn1/x509ce/Makefile.nmake
asn1/x509if/Makefile.nmake
asn1/x509sat/Makefile.nmake
plugins/acn/Makefile.nmake
plugins/agentx/Makefile.nmake
plugins/artnet/Makefile.nmake
plugins/asn1/Makefile.nmake
plugins/ciscosm/Makefile.nmake
plugins/docsis/Makefile.nmake
plugins/enttec/Makefile.nmake
plugins/gryphon/Makefile.nmake
plugins/h223/Makefile.nmake
plugins/irda/Makefile.nmake
plugins/lwres/Makefile.nmake
plugins/megaco/Makefile.nmake
plugins/mgcp/Makefile.nmake
plugins/opsi/Makefile.nmake
plugins/pcli/Makefile.nmake
plugins/profinet/Makefile.nmake
plugins/rlm/Makefile.nmake
plugins/rtnet/Makefile.nmake
plugins/rudp/Makefile.nmake
plugins/sbus/Makefile.nmake
plugins/v5ua/Makefile.nmake

index 9a2b76a0a04e95da24ddf4564cb7f7e14cf70bed..5918e3d8d6c00ff91ee6cbf4aefa36d8b9a4cb2b 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py MAP_DialoguePDU.asn packet-MAP-DialoguePDU-template.c packet-MAP-DialoguePDU-template.h MAP_DialoguePDU.cnf
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c MAP_DialoguePDU.cnf -s packet-MAP-DialoguePDU-template MAP_DialoguePDU.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c MAP_DialoguePDU.cnf -s packet-MAP-DialoguePDU-template MAP_DialoguePDU.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index 9d48fd3eeda59015329626955fb0e2f27b037d3c..75f398a209e1c53fb478f7e3418999dd77bebae3 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py acp133.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 acp133.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template acp133.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index c3881d5e8dbd20e31fb558bac8023e25835c520c..2dfe9f52ce5e01a1556e2e2108a2de012a7753f8 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py acse.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 acse.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template acse.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index 3534f412befe6001c2396d53d4bfd4b5b81924de..85018940ecd7e78c9c0991aeda3c87efe33652d8 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py ansi_map.asn packet-ansi_map-template.c packet-ansi_map-template.h ansi_map.cnf
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c ansi_map.cnf -s packet-ansi_map-template ansi_map.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c ansi_map.cnf -s packet-ansi_map-template ansi_map.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index db007918ca1f58e752ac2d2ccf446d978ec43488..8022a1e68c0872ad391c2867d84d1499345e0a3f 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py camel.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h camel.cnf 
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c camel.cnf -s packet-$(PROTOCOL_NAME)-template camel.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c camel.cnf -s packet-$(PROTOCOL_NAME)-template camel.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index 6c1c2c50f0cbd2898d1a372cf376e3374a29e613..32c7f0cc5392b42215b0f04bf311a1e9369e9bc0 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py $(PROTOCOL_NAME).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 $(PROTOCOL_NAME).asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template $(PROTOCOL_NAME).asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index 9e6dd57aeddc2ff750117a68afccec67a6bab069..3d1af2580b789b1a169e3a5f45cd6a1e92d47b3f 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py CMIP.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 CMIP.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template CMIP.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index d3f7f5e1cbfe54c8211c5dd6bf2da41620f41601..b24b5651b0205e171b5dcb2259c17590e0b8d6b5 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py CryptographicMessageSyntax.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 CryptographicMessageSyntax.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template CryptographicMessageSyntax.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index 1e0eca3084943fcd5cb773b4de2826f4470007b1..bf7c050bf35b48fd1ec66171cd85d7e1a9ac5f8f 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py dap.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 dap.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template dap.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index 03d412e67972bab597e73f4f8508ab9f46b88de6..5729da27e180cfd4bc6600625aab565e3a461647 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py disp.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 disp.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template disp.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index 4a6baaf501f682433000d54515f70434921bb9dd..9a83205bc7baa391c13042d5ca711e80935389a8 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py dop.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 dop.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template dop.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index 78532c7f038053e8d366ef849d5d9ca007220827..182a3ef6a6a64d7970d7f22434b8ca71d3d4f6b5 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py dsp.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 dsp.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template dsp.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index 935e6918360501e3d12a9de7e2a68432724fe855..95169cddeb37b3c162df185d69846602492ae655 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py ExtendedSecurityServices.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h $(PROTOCOL_NAME).cnf
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -b -k -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template ExtendedSecurityServices.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -k -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template ExtendedSecurityServices.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index 5f54ad3f5643bf1255537c3536d3523769def313..a321302916315567f1c5cff512ae3d7f155233b4 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py ISO8571-FTAM.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 ISO8571-FTAM.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template ISO8571-FTAM.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index 84a52c92f817df2e9c96f70e72cb2018641252e9..bdc2b858e1627f730c02f841bc662749af5012cb 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py ftbp.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 ftbp.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template ftbp.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index 5a4883c770bbdcb1478bce28b75802fce43420c4..2aafda672cb7e1f07061e0b1c225f44398af942e 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py GNM.asn packet-gnm-template.c packet-gnm-template.h gnm.cnf
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c gnm.cnf -s packet-gnm-template GNM.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c gnm.cnf -s packet-gnm-template GNM.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index a425aa032573abe386b1cf5d6fee831f786f44f1..bea30bb507726e959894982fffd4ca42ec0c0203 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py SS-Operations.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h gsm_ss.cnf 
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c gsm_ss.cnf -s packet-$(PROTOCOL_NAME)-template SS-Operations.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c gsm_ss.cnf -s packet-$(PROTOCOL_NAME)-template SS-Operations.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index 9cd234eaed3904fd6ddad8090452697228e9815e..18df8f4d6f2997b74543ad3e84fc275a5259dc15 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py GSMMAP.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h gsmmap.cnf 
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c gsmmap.cnf -s packet-$(PROTOCOL_NAME)-template GSMMAP.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c gsmmap.cnf -s packet-$(PROTOCOL_NAME)-template GSMMAP.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index 1545eb1f21d04c2cd9b5667f1fe86024cefc8a24..53d3cecaaf6770a18f24c6213992f295db446db5 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py H323-MESSAGES.asn $(PROTOCOL_NAME).cnf packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template H323-MESSAGES.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template H323-MESSAGES.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index eda21f8e1e21949787bb68eb0b3578fb057b3fa0..079ad6f0ec7fda26aebc572ea77d77b1242613b9 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py H235-SECURITY-MESSAGES.asn H235-SRTP.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h $(PROTOCOL_NAME).cnf
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template H235-SECURITY-MESSAGES.asn H235-SRTP.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template H235-SECURITY-MESSAGES.asn H235-SRTP.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index 54b15d1c50bb713c75012230928ff7de9e641940..6406129fb212f46fc0b7c6990e9df2d36d35ba52 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py  MULTIMEDIA-SYSTEM-CONTROL.asn $(PROTOCOL_NAME).cnf packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template  MULTIMEDIA-SYSTEM-CONTROL.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template  MULTIMEDIA-SYSTEM-CONTROL.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index 5c4679dcc38ae74753a1e9802acc8d318b74e26b..4cb8e933ac6db4aed77a8e15d184e2916f3325fd 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py h248v3.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 h248v3.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template h248v3.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index 92ee7e3eeb2216ec76beb7e00825ab9262c396a3..25377f8d6d27ae819830251e184e4a45ff566a5d 100644 (file)
@@ -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
index aeab64ee09e1546870dff53fea5c53c15ff93555..436f04fd71fedfe39775d80461edeef61aea6293 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py inap.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h inap.cnf 
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c inap.cnf -s packet-$(PROTOCOL_NAME)-template inap.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c inap.cnf -s packet-$(PROTOCOL_NAME)-template inap.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index 46fbb214579f68269e3b851035f62961e83f7f09..3f64472080672187a0843a4d074e8d3314512da1 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py Lightweight-Directory-Access-Protocol-V3.asn packet-ldap-template.c packet-ldap-template.h ldap.cnf
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c ldap.cnf -s packet-ldap-template Lightweight-Directory-Access-Protocol-V3.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c ldap.cnf -s packet-ldap-template Lightweight-Directory-Access-Protocol-V3.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index e2751766c68604db39f01fb9a3625b092a698d18..b3976e7b43c22077df9262e86d66d6b9fa1895a1 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py LogotypeCertExtn.asn packet-logotype-cert-extn-template.c packet-logotype-cert-extn-template.h logotype-cert-extn.cnf
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c logotype-cert-extn.cnf -s packet-logotype-cert-extn-template LogotypeCertExtn.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c logotype-cert-extn.cnf -s packet-logotype-cert-extn-template LogotypeCertExtn.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index 996fbb972ce1feb8785bfdcf1d9d8fd91c73aba6..83806a557e7fa83c52a8e080278ed3eaa45b980f 100644 (file)
@@ -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
index 2edf4126928ab10d77fa41b40490aab3d2b9e376..786bd9af9949e984c05a8e7d4d7a818967e99481 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py nbap.asn packet-nbap-template.c packet-nbap-template.h nbap.cnf
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -e -F -p $(PROTOCOL_NAME) -c nbap.cnf -s packet-nbap-template nbap.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -e -F -p $(PROTOCOL_NAME) -c nbap.cnf -s packet-nbap-template nbap.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index c6902955a6e3a452bb847db134372f246718bfd8..42dd9c92a68d9904b60906d10f99492cdcb1cd67 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py NETSCAPE-CERT-EXTS.asn packet-ns_cert_exts-template.c packet-ns_cert_exts-template.h ns_cert_exts.cnf 
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c ns_cert_exts.cnf -s packet-ns_cert_exts-template NETSCAPE-CERT-EXTS.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c ns_cert_exts.cnf -s packet-ns_cert_exts-template NETSCAPE-CERT-EXTS.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index db84318cc074f596c968d202f5714dc46bbcda4c..98f6f42956b2875f005d0c9a3089bc3790cdd013 100644 (file)
@@ -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
index f7ec56f2336746c9554dc5c44431be764db9eb6e..53b4268e901787e789e75057b7e5a47e66da0be8 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py PKCS1.asn packet-pkcs1-template.c packet-pkcs1-template.h pkcs1.cnf
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -b -p $(PROTOCOL_NAME) -c pkcs1.cnf -s packet-pkcs1-template PKCS1.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -p $(PROTOCOL_NAME) -c pkcs1.cnf -s packet-pkcs1-template PKCS1.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index 116aeba6ffbd29d288b5036504347595272a7029..b0c4d50740362123c0f5bc107d24447fe4a19d48 100644 (file)
@@ -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
index d92f503cab4b012a4f40dc6c6841e148c48db1bf..0ddc6bc643868493cb1bab253e8ea2094b5eee04 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py PKIX1EXPLICIT93.asn packet-pkix1explicit-template.c packet-pkix1explicit-template.h pkix1explicit.cnf
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -e -b -p $(PROTOCOL_NAME) -c pkix1explicit.cnf -s packet-pkix1explicit-template PKIX1EXPLICIT93.asn 
+       $(PYTHON) "../../tools/asn2wrs.py" -e -b -p $(PROTOCOL_NAME) -c pkix1explicit.cnf -s packet-pkix1explicit-template PKIX1EXPLICIT93.asn 
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index bfa797444c8fa8598cf3911c27fd9b8c8a0e3879..b6718cb304ecb6104868dc4b71b4908dc49a73ba 100644 (file)
@@ -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
index 0ef2f4496b6bdc88eed36b2b4ff248a3bad30b9a..f5fd2718758d93758f354a7fce0819f6a2f09999 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py CMP.asn packet-cmp-template.c packet-cmp-template.h cmp.cnf 
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c cmp.cnf -s packet-cmp-template CMP.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c cmp.cnf -s packet-cmp-template CMP.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index ea5d4e5ba84be3f6970d2811b230f235e500b8d7..505677ce94c5c36bdbbb65af39d3d046faeede54 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py CRMF.asn packet-crmf-template.c packet-crmf-template.h crmf.cnf 
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c crmf.cnf -s packet-crmf-template CRMF.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c crmf.cnf -s packet-crmf-template CRMF.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index 0c897ec33d192a32fc3ac7a2d6e139ea28432a97..e5380805f1adfe62e4e276f2e57bc6214e352619 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py PKIXProxy.asn packet-pkixproxy-template.c packet-pkixproxy-template.h pkixproxy.cnf
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c pkixproxy.cnf -s packet-pkixproxy-template PKIXProxy.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c pkixproxy.cnf -s packet-pkixproxy-template PKIXProxy.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index 51f1a33170c8001c1cf8dc05b4a4bdc5f2bd3312..23dd95ae857502c32231c8804ad49cc83799a3cf 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py PKIXqualified.asn packet-pkixqualified-template.c packet-pkixqualified-template.h pkixqualified.cnf
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c pkixqualified.cnf -s packet-pkixqualified-template PKIXqualified.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c pkixqualified.cnf -s packet-pkixqualified-template PKIXqualified.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index 534bbcb9617c56545cea3176781762513f8a19b9..7dde941fa43ca7ba8e55939986af551f376d4a8d 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py PKIXTSP.asn packet-pkixtsp-template.c packet-pkixtsp-template.h pkixtsp.cnf
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c pkixtsp.cnf -s packet-pkixtsp-template PKIXTSP.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c pkixtsp.cnf -s packet-pkixtsp-template PKIXTSP.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index b2fa294ab6f66bcc55e7a6842e3203482a5357e6..2598ca0461721db3e3e353fe5ea7c830de14e32e 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py ISO8823-PRESENTATION.asn packet-pres-template.c packet-pres-template.h pres.cnf
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c pres.cnf -s packet-pres-template ISO8823-PRESENTATION.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c pres.cnf -s packet-pres-template ISO8823-PRESENTATION.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index 893453eafd95876c07e6f8060fa09399dbe13d16..7fd8ad3c88a497a34f822c6e2a0f8b1b02ea9ea2 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py ranap.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h ranap.cnf 
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -e -F -p $(PROTOCOL_NAME) -c ranap.cnf -s packet-$(PROTOCOL_NAME)-template ranap.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -e -F -p $(PROTOCOL_NAME) -c ranap.cnf -s packet-$(PROTOCOL_NAME)-template ranap.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index d7818143ac82b3b27ab1d5c154fe9bfbc300ab02..dd68e57d66371a77fb5104de5e8182ffc532d94c 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py rnsap.asn packet-rnsap-template.c packet-rnsap-template.h rnsap.cnf
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -e -F -p $(PROTOCOL_NAME) -c rnsap.cnf -s packet-rnsap-template rnsap.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -e -F -p $(PROTOCOL_NAME) -c rnsap.cnf -s packet-rnsap-template rnsap.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index b61e258fb1c8fd82dbf1d1153a84dbbd450a5993..80f740e880c69886503818e5d6278eecca45b2c6 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py $(PROTOCOL_NAME).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 $(PROTOCOL_NAME).asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template $(PROTOCOL_NAME).asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index c00017f018ba3fc907e558adbc066068f17ee4ec..4b880bbf1af26042774e2ed1fe0d894b04f3060e 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py rrlp.asn packet-rrlp-template.c packet-rrlp-template.h rrlp.cnf
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -u -e -p $(PROTOCOL_NAME) -c rrlp.cnf -s packet-rrlp-template rrlp.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -u -e -p $(PROTOCOL_NAME) -c rrlp.cnf -s packet-rrlp-template rrlp.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index 27037b8e67a0ba7678b8e188b26a6ea59a2e1001..2497348b0d97771f1c7f9160042be79cf868dbfd 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py $(PROTOCOL_NAME).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 $(PROTOCOL_NAME).asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template $(PROTOCOL_NAME).asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index 7cefcd83f1372054ef9165e18e23ce436594d293..1031d098266385f1554a39273649e41938c836a3 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py $(PROTOCOL_NAME).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 $(PROTOCOL_NAME).asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template $(PROTOCOL_NAME).asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index 8368a1f8e4464d05bda88eb42d06da8286546837..06e3ca1b530771b2c0807fe8da11bca076e8942b 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py SMRSE.asn packet-smrse-template.c packet-smrse-template.h smrse.cnf 
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c smrse.cnf -s packet-smrse-template SMRSE.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c smrse.cnf -s packet-smrse-template SMRSE.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index 7da42e6879ede24ccfe3c898cbfeb0a26074fa88..670e2e3d02fe2e88fca489cefe2850ff8e0eb3ae 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py snmp.asn packet-snmp-template.c packet-snmp-template.h snmp.cnf
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c snmp.cnf -s packet-snmp-template snmp.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c snmp.cnf -s packet-snmp-template snmp.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index 950c7208dcb437168f3f1a9eb13afcaaebfd9e64..334dbdf9dfbdffb753718ab5d909a3a70fa9ed4d 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py spnego.asn packet-spnego-template.c packet-spnego-template.h spnego.cnf
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c spnego.cnf -s packet-spnego-template spnego.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c spnego.cnf -s packet-spnego-template spnego.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index 44acf2626a8b5b9a9e0aee0f59929c6bb1a5aae9..72adee46d960789e2d465b5f13ae4a1bd392f572 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py tcap.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h tcap.cnf 
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c tcap.cnf -s packet-$(PROTOCOL_NAME)-template tcap.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c tcap.cnf -s packet-$(PROTOCOL_NAME)-template tcap.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index b52440f9763707e5bdfb242a163314bed9b4d540..15c44f28ec197bafdcafed156b9272d3ceb3ccde 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py ULP.asn packet-ulp-template.c packet-ulp-template.h ulp.cnf
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -u -e -p $(PROTOCOL_NAME) -c ulp.cnf -s packet-ulp-template ULP.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -u -e -p $(PROTOCOL_NAME) -c ulp.cnf -s packet-ulp-template ULP.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index 150ab312ba151331b6c988613eeebf58a0afd88f..f326528cdbe2fc415976c669a85a38cf6e897b83 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py umts_rrc_Class-definitions.asn packet-umts_rrc-template.c packet-umts_rrc-template.h umts_rrc.cnf
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -u -e -p $(PROTOCOL_NAME) -c umts_rrc.cnf -s packet-umts_rrc-template umts_rrc_Class-definitions.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -u -e -p $(PROTOCOL_NAME) -c umts_rrc.cnf -s packet-umts_rrc-template umts_rrc_Class-definitions.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index c07be2ffdcbce456b573baeb52393579a1cafec8..d57a093206f935b4cff516ecba51e0c34d683fee 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py umts_rrc_Internode-definitions.asn packet-umts_rrc_internode-defs-template.c packet-umts_rrc_internode-defs-template.h umts_rrc_internode-defs.cnf
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -u -e -p $(PROTOCOL_NAME) -c umts_rrc_internode-defs.cnf -s packet-umts_rrc_internode-defs-template umts_rrc_Internode-definitions.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -u -e -p $(PROTOCOL_NAME) -c umts_rrc_internode-defs.cnf -s packet-umts_rrc_internode-defs-template umts_rrc_Internode-definitions.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index b59ff3f0486f5488f066e35336a6c65a99626eae..a17e6c3f32c144ed72d756f1bf24fd19c20667ba 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py umts_rrc_InformationElements.asn packet-umts_rrc_ies-template.c packet-umts_rrc_ies-template.h umts_rrc_ies.cnf
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -u -e -p $(PROTOCOL_NAME) -c umts_rrc_ies.cnf -s packet-umts_rrc_ies-template umts_rrc_InformationElements.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -u -e -p $(PROTOCOL_NAME) -c umts_rrc_ies.cnf -s packet-umts_rrc_ies-template umts_rrc_InformationElements.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index 9e3b7db6a14cf531f46a635d6766ea3fa37b444f..b9d65457bc72ad99b42904b74b398365427c6b2b 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py umts_rrc_PDU-definitions.asn packet-umts_rrc_pdu_def-template.c packet-umts_rrc_pdu_def-template.h umts_rrc_pdu_def.cnf
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -u -e -p $(PROTOCOL_NAME) -c umts_rrc_pdu_def.cnf -s packet-umts_rrc_pdu_def-template umts_rrc_PDU-definitions.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -u -e -p $(PROTOCOL_NAME) -c umts_rrc_pdu_def.cnf -s packet-umts_rrc_pdu_def-template umts_rrc_PDU-definitions.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index dcc0f1c87ab887a9383d25ef7cbe869eb7d65f3d..7dc430ce9c3b0090714232259fd47b6d496e75e8 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py WLANCERTEXTN.asn packet-wlancertextn-template.c packet-wlancertextn-template.h wlancertextn.cnf
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c wlancertextn.cnf -s packet-wlancertextn-template WLANCERTEXTN.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c wlancertextn.cnf -s packet-wlancertextn-template WLANCERTEXTN.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index 968e8793985ae954eddfb5fcc570eeb394806ad4..9fd7a836456b973619a2c26780a142cff7d98152 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py $(PROTOCOL_NAME).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 $(PROTOCOL_NAME).asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template $(PROTOCOL_NAME).asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index da8207bf9528c7a515a791b6fba023fd65c0e19b..aa4ef2d173df6b7f7ec481b102f8d20800c2fe62 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py $(PROTOCOL_NAME).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 $(PROTOCOL_NAME).asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template $(PROTOCOL_NAME).asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index 20e132b77b42205a14a592da9f23b3baa6053f98..739c0219f4f0a384108c789fabe9c73db94007c9 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py AuthenticationFramework.asn packet-x509af-template.c packet-x509af-template.h x509af.cnf ../x509if/x509if-exp.cnf ../x509sat/x509sat-exp.cnf ../x509ce/x509ce-exp.cnf
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c x509af.cnf -s packet-x509af-template AuthenticationFramework.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c x509af.cnf -s packet-x509af-template AuthenticationFramework.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index d63d000b92df7de3e1e079f2d86b13c2085e4511..43b3e4b40069d62706ea5e0ba2b9126db9d104ad 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py CertificateExtensions.asn packet-x509ce-template.c packet-x509ce-template.h x509ce.cnf ../x509if/x509if-exp.cnf ../x509sat/x509sat-exp.cnf ../x509af/x509af-exp.cnf
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c x509ce.cnf -s packet-x509ce-template CertificateExtensions.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c x509ce.cnf -s packet-x509ce-template CertificateExtensions.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index 1095cdf843e15b512e7975bf11e122d677697d0c..4059927c9cbfb93daf77111f912f96bee0cecb09 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py InformationFramework.asn packet-x509if-template.c packet-x509if-template.h x509if.cnf ../x509sat/x509sat-exp.cnf
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c x509if.cnf -s packet-x509if-template InformationFramework.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c x509if.cnf -s packet-x509if-template InformationFramework.asn
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
        @exit 1
index bf16494dcb6059fdc2ba89c007321ca6b92d0429..c1f8a611f622843a2148e1adf5aa408073bdf8ee 100644 (file)
@@ -15,7 +15,7 @@ generate_dissector: $(DISSECTOR_FILES)
 
 $(DISSECTOR_FILES): ../../tools/asn2wrs.py SelectedAttributeTypes.asn packet-x509sat-template.c packet-x509sat-template.h x509sat.cnf ../x509if/x509if-exp.cnf
 !IFDEF PYTHON
-       $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c x509sat.cnf -s packet-x509sat-template SelectedAttributeTypes.asn
+       $(PYTHON) "../../tools/asn2wrs.py" -b -e -p $(PROTOCOL_NAME) -c x509sat.cnf -s packet-x509sat-template SelectedAttributeTypes.asn
 #      sed -e "s/\([\"\.]\)Syntax/\1/g" -i.orig packet-x509sat.c
 !ELSE
        @echo Error: You need Python to use asn2wrs.py
index 82bd1d132dec93cacfeee3fcfe94739d7cf7ce25..d6b75a6f84c7934ba662a46702dce1ea249efb80 100644 (file)
@@ -65,7 +65,7 @@ $(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLU
 plugin.c: $(DISSECTOR_SRC)
 !IFDEF PYTHON
        @echo Making plugin.c (using python)
-       @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC)
+       @$(PYTHON) "../../tools/make-dissector-reg.py" . plugin $(DISSECTOR_SRC)
 !ELSE
        @echo Making plugin.c (using sh)
        @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC)
index baf8b92820883ece6d9bda24c1d4fcd3a2b68aba..ef84417b8bc02d72749da942caa384f94c8debcd 100644 (file)
@@ -63,7 +63,7 @@ agentx.dll agentx.exp agentx.lib : $(OBJECTS) $(LINK_PLUGIN_WITH)
 plugin.c: $(DISSECTOR_SRC)
 !IFDEF PYTHON
        @echo Making plugin.c (using python)
-       @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC)
+       @$(PYTHON) "../../tools/make-dissector-reg.py" . plugin $(DISSECTOR_SRC)
 !ELSE
        @echo Making plugin.c (using sh)
        @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC)
index 627ade46b0ce9274320b10da0c9989797ce37bef..6c47bce35b7c275d8b653030f3284de82c286d15 100644 (file)
@@ -63,7 +63,7 @@ artnet.dll artnet.exp artnet.lib : $(OBJECTS) $(LINK_PLUGIN_WITH)
 plugin.c: $(DISSECTOR_SRC)
 !IFDEF PYTHON
        @echo Making plugin.c (using python)
-       @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC)
+       @$(PYTHON) "../../tools/make-dissector-reg.py" . plugin $(DISSECTOR_SRC)
 !ELSE
        @echo Making plugin.c (using sh)
        @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC)
index b6e89d2f9fc13959c727c644556e9603259b0804..29058f331f5dbe96932bee864e9342a6e0d978b7 100644 (file)
@@ -63,7 +63,7 @@ asn1.dll asn1.exp asn1.lib : $(OBJECTS) $(LINK_PLUGIN_WITH)
 plugin.c: $(DISSECTOR_SRC)
 !IFDEF PYTHON
        @echo Making plugin.c (using python)
-       @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC)
+       @$(PYTHON) "../../tools/make-dissector-reg.py" . plugin $(DISSECTOR_SRC)
 !ELSE
        @echo Making plugin.c (using sh)
        @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC)
index b76441ece141230d40afbb2c1f98f5becde59655..02c2513d43ca2e61891b14084057fb4832674bbf 100644 (file)
@@ -63,7 +63,7 @@ ciscosm.dll ciscosm.exp ciscosm.lib : $(OBJECTS) $(LINK_PLUGIN_WITH)
 plugin.c: $(DISSECTOR_SRC)
 !IFDEF PYTHON
        @echo Making plugin.c (using python)
-       @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC)
+       @$(PYTHON) "../../tools/make-dissector-reg.py" . plugin $(DISSECTOR_SRC)
 !ELSE
        @echo Making plugin.c (using sh)
        @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC)
index bf6ef00822a8e3a9852f5170f73814f9a97d31f5..fe6817e5e3884bac2371ea3326bdef58c3a6ac86 100644 (file)
@@ -63,7 +63,7 @@ $(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLU
 plugin.c: $(DISSECTOR_SRC)
 !IFDEF PYTHON
        @echo Making plugin.c (using python)
-       @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC)
+       @$(PYTHON) "../../tools/make-dissector-reg.py" . plugin $(DISSECTOR_SRC)
 !ELSE
        @echo Making plugin.c (using sh)
        @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC)
index bf31e937eb825b559ee4b65e94fd177b156eaed1..2862ad294dc69934aa4b963c408ab5285202c4d5 100644 (file)
@@ -63,7 +63,7 @@ enttec.dll enttec.exp enttec.lib : $(OBJECTS) $(LINK_PLUGIN_WITH)
 plugin.c: $(DISSECTOR_SRC)
 !IFDEF PYTHON
        @echo Making plugin.c (using python)
-       @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC)
+       @$(PYTHON) "../../tools/make-dissector-reg.py" . plugin $(DISSECTOR_SRC)
 !ELSE
        @echo Making plugin.c (using sh)
        @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC)
index 64f161d342d90e61364276565fdefa907aa4fd45..7d3d6d814827523312667820651b5155f3020ffc 100644 (file)
@@ -63,7 +63,7 @@ gryphon.dll gryphon.exp gryphon.lib : $(OBJECTS) $(LINK_PLUGIN_WITH)
 plugin.c: $(DISSECTOR_SRC)
 !IFDEF PYTHON
        @echo Making plugin.c (using python)
-       @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC)
+       @$(PYTHON) "../../tools/make-dissector-reg.py" . plugin $(DISSECTOR_SRC)
 !ELSE
        @echo Making plugin.c (using sh)
        @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC)
index 084a9a191525e1c43b2526670baf25efc32a093b..555ba3b9289875dd3dce442ffa7a39c5cf6faf92 100644 (file)
@@ -65,7 +65,7 @@ $(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLU
 plugin.c: $(DISSECTOR_SRC)
 !IFDEF PYTHON
        @echo Making plugin.c (using python)
-       @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC)
+       @$(PYTHON) "../../tools/make-dissector-reg.py" . plugin $(DISSECTOR_SRC)
 !ELSE
        @echo Making plugin.c (using sh)
        @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC)
index baacbb192ae76f9f319822a618c3f0e8b3d6ed45..6d5a8a32c1b39358cab5873361923f862660dfd4 100644 (file)
@@ -63,7 +63,7 @@ irda.dll irda.exp irda.lib : $(OBJECTS) $(LINK_PLUGIN_WITH)
 plugin.c: $(DISSECTOR_SRC)
 !IFDEF PYTHON
        @echo Making plugin.c (using python)
-       @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC)
+       @$(PYTHON) "../../tools/make-dissector-reg.py" . plugin $(DISSECTOR_SRC)
 !ELSE
        @echo Making plugin.c (using sh)
        @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC)
index 4d4f4fede4fd44f19936cc9b116430892a10ea64..6aa371113e887d4f6a97d65dae1f5546af28368b 100644 (file)
@@ -63,7 +63,7 @@ lwres.dll lwres.exp lwres.lib : $(OBJECTS) $(LINK_PLUGIN_WITH)
 plugin.c: $(DISSECTOR_SRC)
 !IFDEF PYTHON
        @echo Making plugin.c (using python)
-       @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC)
+       @$(PYTHON) "../../tools/make-dissector-reg.py" . plugin $(DISSECTOR_SRC)
 !ELSE
        @echo Making plugin.c (using sh)
        @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC)
index bc7d2ff946ea91ed03fa23249c3ab6dccace5bda..3e268bb817ed92f322b8fe1145daa0421464a77c 100644 (file)
@@ -63,7 +63,7 @@ megaco.dll megaco.exp megaco.lib : $(OBJECTS) $(LINK_PLUGIN_WITH)
 plugin.c: $(DISSECTOR_SRC)
 !IFDEF PYTHON
        @echo Making plugin.c (using python)
-       @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC)
+       @$(PYTHON) "../../tools/make-dissector-reg.py" . plugin $(DISSECTOR_SRC)
 !ELSE
        @echo Making plugin.c (using sh)
        @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC)
index fb1d676906f84ea7924d132703269dc10f1cf56d..397bf63e89833552aae7c63b8ba3b037cf54139f 100644 (file)
@@ -63,7 +63,7 @@ mgcp.dll mgcp.exp mgcp.lib : $(OBJECTS) $(LINK_PLUGIN_WITH)
 plugin.c: $(DISSECTOR_SRC)
 !IFDEF PYTHON
        @echo Making plugin.c (using python)
-       @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC)
+       @$(PYTHON) "../../tools/make-dissector-reg.py" . plugin $(DISSECTOR_SRC)
 !ELSE
        @echo Making plugin.c (using sh)
        @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC)
index 429a65f815af2fac7595bd64918dfa8b6be6c355..da4bd4f753adef73ef75d86d43d288acee50903a 100644 (file)
@@ -63,7 +63,7 @@ opsi.dll opsi.exp opsi.lib : $(OBJECTS) $(LINK_PLUGIN_WITH)
 plugin.c: $(DISSECTOR_SRC)
 !IFDEF PYTHON
        @echo Making plugin.c (using python)
-       @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC)
+       @$(PYTHON) "../../tools/make-dissector-reg.py" . plugin $(DISSECTOR_SRC)
 !ELSE
        @echo Making plugin.c (using sh)
        @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC)
index ec726209e3ee7f5b2d424b6daa2a9116eb28c004..00b78d918361ba37fab5df531a707c51444f84cf 100644 (file)
@@ -63,7 +63,7 @@ pcli.dll pcli.exp pcli.lib : $(OBJECTS) $(LINK_PLUGIN_WITH)
 plugin.c: $(DISSECTOR_SRC)
 !IFDEF PYTHON
        @echo Making plugin.c (using python)
-       @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC)
+       @$(PYTHON) "../../tools/make-dissector-reg.py" . plugin $(DISSECTOR_SRC)
 !ELSE
        @echo Making plugin.c (using sh)
        @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC)
index 4a5fc29c16d5ba17129f3a56b601b8adc13bdfdf..afb36797ae80ab2f57537e5e3b87397abbbede10 100644 (file)
@@ -63,7 +63,7 @@ profinet.dll profinet.exp profinet.lib : $(OBJECTS) $(LINK_PLUGIN_WITH)
 plugin.c: $(DISSECTOR_SRC)
 !IFDEF PYTHON
        @echo Making plugin.c (using python)
-       @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC)
+       @$(PYTHON) "../../tools/make-dissector-reg.py" . plugin $(DISSECTOR_SRC)
 !ELSE
        @echo Making plugin.c (using sh)
        @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC)
index 90585eb68380ece7cf5411a329393114f64a09d7..df994c3e5cdc927dcf41ad3bfed41f7da89af5bc 100644 (file)
@@ -63,7 +63,7 @@ rlm.dll rlm.exp rlm.lib : $(OBJECTS) $(LINK_PLUGIN_WITH)
 plugin.c: $(DISSECTOR_SRC)
 !IFDEF PYTHON
        @echo Making plugin.c (using python)
-       @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC)
+       @$(PYTHON) "../../tools/make-dissector-reg.py" . plugin $(DISSECTOR_SRC)
 !ELSE
        @echo Making plugin.c (using sh)
        @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC)
index 0b05f49e77ca397557f90e3428b0875b57bd3f0a..f77ee36f32c7ca24a7acac92c72ae2d8acba8c2f 100644 (file)
@@ -63,7 +63,7 @@ rtnet.dll rtnet.exp rtnet.lib : $(OBJECTS) $(LINK_PLUGIN_WITH)
 plugin.c: $(DISSECTOR_SRC)
 !IFDEF PYTHON
        @echo Making plugin.c (using python)
-       @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC)
+       @$(PYTHON) "../../tools/make-dissector-reg.py" . plugin $(DISSECTOR_SRC)
 !ELSE
        @echo Making plugin.c (using sh)
        @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC)
index 0f9a9a51ee64be3a85fdaa320a7937c7084dbf28..983100036714db040524c794e3aae51b2751642c 100644 (file)
@@ -63,7 +63,7 @@ rudp.dll rudp.exp rudp.lib : $(OBJECTS) $(LINK_PLUGIN_WITH)
 plugin.c: $(DISSECTOR_SRC)
 !IFDEF PYTHON
        @echo Making plugin.c (using python)
-       @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC)
+       @$(PYTHON) "../../tools/make-dissector-reg.py" . plugin $(DISSECTOR_SRC)
 !ELSE
        @echo Making plugin.c (using sh)
        @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC)
index a0676e750a5a25679e6b7dd7811f75c936d565a3..0cfbb2972134aa2ca8eb19fd1fe5a4e88de0b8cb 100644 (file)
@@ -63,7 +63,7 @@ sbus.dll sbus.exp sbus.lib : $(OBJECTS) $(LINK_PLUGIN_WITH)
 plugin.c: $(DISSECTOR_SRC)
 !IFDEF PYTHON
        @echo Making plugin.c (using python)
-       @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC)
+       @$(PYTHON) "../../tools/make-dissector-reg.py" . plugin $(DISSECTOR_SRC)
 !ELSE
        @echo Making plugin.c (using sh)
        @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC)
index e72d0a6696f8fe5587ca15882cd7b13bb444eb6e..35be928453e9bd0a864c08bc80084537a7a8e3dd 100644 (file)
@@ -63,7 +63,7 @@ v5ua.dll v5ua.exp v5ua.lib : $(OBJECTS) $(LINK_PLUGIN_WITH)
 plugin.c: $(DISSECTOR_SRC)
 !IFDEF PYTHON
        @echo Making plugin.c (using python)
-       @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC)
+       @$(PYTHON) "../../tools/make-dissector-reg.py" . plugin $(DISSECTOR_SRC)
 !ELSE
        @echo Making plugin.c (using sh)
        @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC)