aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/megaco
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2006-10-29 17:19:52 +0000
committerUlf Lamping <ulf.lamping@web.de>2006-10-29 17:19:52 +0000
commit647533a5efeba5a4c2002eaaa8edcc5ca596015e (patch)
tree1e17d9ca69d0058bc9a860e5ca9205e87c2e2dd8 /plugins/megaco
parentc62cb0006d03daf020d523601c31e906af355dd9 (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. svn path=/trunk/; revision=19730
Diffstat (limited to 'plugins/megaco')
-rw-r--r--plugins/megaco/Makefile.nmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/megaco/Makefile.nmake b/plugins/megaco/Makefile.nmake
index bc7d2ff946..3e268bb817 100644
--- a/plugins/megaco/Makefile.nmake
+++ b/plugins/megaco/Makefile.nmake
@@ -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)