python socket_util: Don't try to unbind None bind_path.
[sliver-openvswitch.git] / python / automake.mk
index 089ef36..f9d2c57 100644 (file)
@@ -28,9 +28,14 @@ ovs_pyfiles = \
        python/ovs/socket_util.py \
        python/ovs/stream.py \
        python/ovs/timeval.py \
-       python/ovs/vlog.py \
-       python/ovs/util.py
-EXTRA_DIST += $(ovs_pyfiles) python/ovs/dirs.py $(ovstest_pyfiles)
+       python/ovs/unixctl.py \
+       python/ovs/util.py \
+       python/ovs/version.py \
+       python/ovs/vlog.py
+
+PYFILES = $(ovs_pyfiles) python/ovs/dirs.py $(ovstest_pyfiles)
+EXTRA_DIST += $(PYFILES)
+PYCOV_CLEAN_FILES += $(PYFILES:.py=.py,cover)
 
 if HAVE_PYTHON
 nobase_pkgdata_DATA = $(ovs_pyfiles) $(ovstest_pyfiles)
@@ -54,3 +59,10 @@ install-data-local: ovs-install-data-local
 UNINSTALL_LOCAL += ovs-uninstall-local
 ovs-uninstall-local:
        rm -f $(DESTDIR)$(pkgdatadir)/python/ovs/dirs.py
+
+ALL_LOCAL += $(srcdir)/python/ovs/version.py
+$(srcdir)/python/ovs/version.py: config.status
+       $(ro_shell) > $@.tmp
+       echo 'VERSION = "$(VERSION)"' >> $@.tmp
+       echo 'BUILDNR = "$(BUILDNR)"' >> $@.tmp
+       mv $@.tmp $@