X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Makefile.am;h=115162de53daff510bce0ef0dcf9baf0b6411f8e;hb=e878338bf1409f0dd6d23cb57822a2c4c1a69e0f;hp=c0c100e76f906d818341a655eaec2f2deca70340;hpb=432f6ac6336fb8d65f79aca8e5231f4d53b3c5ee;p=openvswitch diff --git a/Makefile.am b/Makefile.am index c0c100e7..115162de 100644 --- a/Makefile.am +++ b/Makefile.am @@ -22,6 +22,16 @@ AM_CPPFLAGS += -DNDEBUG AM_CFLAGS += -fomit-frame-pointer 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. +run_python = \ + PYTHONDONTWRITEBYTECODE=yes \ + PYTHONPATH=$(top_srcdir)/python:$$PYTHONPATH \ + $(PYTHON) + ALL_LOCAL = BUILT_SOURCES = CLEANFILES = @@ -31,6 +41,7 @@ PYCOV_CLEAN_FILES = build-aux/check-structs,cover EXTRA_DIST = \ CodingStyle \ DESIGN \ + FAQ \ INSTALL.KVM \ INSTALL.Libvirt \ INSTALL.Linux \ @@ -39,6 +50,7 @@ EXTRA_DIST = \ INSTALL.XenServer \ INSTALL.bridge \ INSTALL.userspace \ + IntegrationGuide \ NOTICE \ PORTING \ README-gcov \