From b02e1154658956a0a269652393531d741d23b761 Mon Sep 17 00:00:00 2001 From: Gurucharan Shetty Date: Sat, 16 Nov 2013 19:23:13 -0800 Subject: [PATCH] Makefile.am: Make PYTHONPATH work on Mingw. The ":" used as a seperator does not work when the make is run. ";" is the correct separator. Signed-off-by: Gurucharan Shetty Acked-by: Ben Pfaff --- Makefile.am | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index b1ad24d9d..f2d129459 100644 --- a/Makefile.am +++ b/Makefile.am @@ -22,15 +22,20 @@ AM_CPPFLAGS += -DNDEBUG AM_CFLAGS += -fomit-frame-pointer endif +if WIN32 +psep=";" +else +psep=":" +endif # PYTHONDONTWRITEBYTECODE=yes keeps Python from creating .pyc and .pyo # files. Creating .py[co] works OK for any given version of Open # vSwitch, but it causes trouble if you switch from a version with # foo/__init__.py into an (older) version with plain foo.py, since # foo/__init__.pyc will cause Python to ignore foo.py. if INCLUDE_PYTHON_COMPAT -run_python = PYTHONPATH=$(top_srcdir)/python:$(top_srcdir)/python/compat:$$PYTHONPATH +run_python = PYTHONPATH=$(top_srcdir)/python$(psep)$(top_srcdir)/python/compat$(psep)$$PYTHONPATH else -run_python = PYTHONPATH=$(top_srcdir)/python:$$PYTHONPATH +run_python = PYTHONPATH=$(top_srcdir)/python$(psep)$$PYTHONPATH endif run_python += PYTHONDONTWRITEBYTECODE=yes $(PYTHON) -- 2.47.0