configure: Remove --with-build-number.
[sliver-openvswitch.git] / python / ovs / unixctl.py
index 4a591a7..452afa5 100644 (file)
@@ -57,9 +57,8 @@ def _unixctl_help(conn, unused_argv, unused_aux):
 
 def _unixctl_version(conn, unused_argv, unused_aux):
     assert isinstance(conn, UnixctlConnection)
-    version = "%s (Open vSwitch) %s%s" % (ovs.util.PROGRAM_NAME,
-                                          ovs.version.VERSION,
-                                          ovs.version.BUILDNR)
+    version = "%s (Open vSwitch) %s" % (ovs.util.PROGRAM_NAME,
+                                        ovs.version.VERSION)
     conn.reply(version)