Use PYTHONDONTWRITEBYTECODE=yes for invoking Python for build or test.
[sliver-openvswitch.git] / python / automake.mk
index 447c08f..4c0e78b 100644 (file)
@@ -1,12 +1,11 @@
-run_python = PYTHONPATH=$(top_srcdir)/python:$$PYTHON_PATH $(PYTHON)
-
 ovstest_pyfiles = \
        python/ovstest/__init__.py \
        python/ovstest/args.py \
        python/ovstest/rpcserver.py \
        python/ovstest/tcp.py \
        python/ovstest/udp.py \
-       python/ovstest/util.py
+       python/ovstest/util.py \
+       python/ovstest/vswitch.py
 
 ovs_pyfiles = \
        python/ovs/__init__.py \
@@ -64,8 +63,4 @@ ALL_LOCAL += $(srcdir)/python/ovs/version.py
 $(srcdir)/python/ovs/version.py: config.status
        $(ro_shell) > $(@F).tmp
        echo 'VERSION = "$(VERSION)"' >> $(@F).tmp
-       if [ "$(BUILDNR)" != "0" ]; \
-           then echo 'BUILDNR = "+build$(BUILDNR)"' >> $(@F).tmp; \
-           else echo 'BUILDNR = ""' >> $(@F).tmp; \
-       fi
        if cmp -s $(@F).tmp $@; then touch $@; rm $(@F).tmp; else mv $(@F).tmp $@; fi