python: Make build number format consistent with C.
[sliver-openvswitch.git] / python / automake.mk
index f9d2c57..9672042 100644 (file)
@@ -64,5 +64,8 @@ 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
+       if [ "$(BUILDNR)" != "0" ]; \
+           then echo 'BUILDNR = "+build$(BUILDNR)"' >> $@.tmp; \
+           else echo 'BUILDNR = ""' >> $@.tmp; \
+       fi;
        mv $@.tmp $@