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 --- plugins/megaco/Makefile.nmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/megaco') 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) -- cgit v1.2.3