You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
922 B

  1. diff --git a/Makefile.am b/Makefile.am
  2. index a4dd7b8..099a3c1 100644
  3. --- a/Makefile.am
  4. +++ b/Makefile.am
  5. @@ -53,7 +53,7 @@ endif
  6. # foo/__init__.py into an (older) version with plain foo.py, since
  7. # foo/__init__.pyc will cause Python to ignore foo.py.
  8. run_python = \
  9. - PYTHONPATH=$(top_srcdir)/python$(psep)$$PYTHONPATH \
  10. + PYTHONPATH=$(top_srcdir)/python$(psep)$(PYTHONPATH) \
  11. PYTHONDONTWRITEBYTECODE=yes $(PYTHON)
  12. ALL_LOCAL =
  13. diff --git a/Makefile.in b/Makefile.in
  14. index 8df66e2..98b54bf 100644
  15. --- a/Makefile.in
  16. +++ b/Makefile.in
  17. @@ -1654,7 +1654,7 @@ AM_CFLAGS = -Wstrict-prototypes $(WARNING_FLAGS) $(OVS_CFLAGS) \
  18. # foo/__init__.py into an (older) version with plain foo.py, since
  19. # foo/__init__.pyc will cause Python to ignore foo.py.
  20. run_python = \
  21. - PYTHONPATH=$(top_srcdir)/python$(psep)$$PYTHONPATH \
  22. + PYTHONPATH=$(top_srcdir)/python$(psep)$(PYTHONPATH) \
  23. PYTHONDONTWRITEBYTECODE=yes $(PYTHON)