X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=Makefile.am;h=4b6156d14cb2ef0d8dee0605ff3baadeb3740ef5;hb=ca435eb9112e873853d3cf201ee3f0c5c76bf89f;hp=70ea49cbe6e684f579688308b0a55fa7297c47c7;hpb=8a07709cb80462edb32fc11d056bfc08ce90f62d;p=openvswitch diff --git a/Makefile.am b/Makefile.am index 70ea49cb..4b6156d1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,4 @@ -# Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012 Nicira Networks, Inc. +# Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012 Nicira, Inc. # # Copying and distribution of this file, with or without modification, # are permitted in any medium without royalty provided the copyright @@ -20,10 +20,18 @@ AM_CFLAGS += $(WARNING_FLAGS) if NDEBUG AM_CPPFLAGS += -DNDEBUG AM_CFLAGS += -fomit-frame-pointer -else -AM_LDFLAGS = -export-dynamic 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 = @@ -34,6 +42,7 @@ EXTRA_DIST = \ CodingStyle \ DESIGN \ INSTALL.KVM \ + INSTALL.Libvirt \ INSTALL.Linux \ INSTALL.RHEL \ INSTALL.SSL \