ctdb-build: use a fixed ctdb_version.h using SAMBA_VERSION_STRING
authorStefan Metzmacher <metze@samba.org>
Fri, 16 Jun 2017 10:15:25 +0000 (12:15 +0200)
committerAmitay Isaacs <amitay@samba.org>
Fri, 15 Mar 2019 05:17:14 +0000 (05:17 +0000)
This way we don't get constant rebuild as SAMBA_VERSION_STRING
is "4.7.0pre1.DEVELOPERBUILD" for the binaries under bin/
instead of "4.7.0pre1.GIT.59e51f6".

BUG: https://bugzilla.samba.org/show_bug.cgi?id=13789

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Martin Schwenke <martin@meltin.net>
ctdb/.gitignore
ctdb/include/ctdb_version.h [new file with mode: 0644]
ctdb/wscript

index a634aeb8b452145ffa816cd642bed7483dc0ad0b..f0534b3afd16137c013c49e9f52c85a3b431ed95 100644 (file)
@@ -27,7 +27,6 @@ tests/takeover/ctdb_takeover.pyc
 tests/eventscripts/var
 tests/eventscripts/etc/iproute2
 tests/eventscripts/etc-ctdb/policy_routing
-include/ctdb_version.h
 packaging/RPM/ctdb.spec
 doc/*.[1-7]
 doc/*.[1-7].html
diff --git a/ctdb/include/ctdb_version.h b/ctdb/include/ctdb_version.h
new file mode 100644 (file)
index 0000000..cf27179
--- /dev/null
@@ -0,0 +1,3 @@
+#include "version.h"
+
+#define CTDB_VERSION_STRING SAMBA_VERSION_STRING
index c2f1956a916ad83f8e39c2bc9fde183ef58db4aa..975235941cb264b2c3a0ac14abdeca6574d4f5d8 100644 (file)
@@ -340,15 +340,6 @@ def configure(conf):
             else:
                 Logs.info("  %s: no" % (m))
 
-def gen_ctdb_version(task):
-    fp = open(task.outputs[0].bldpath(task.env), 'w')
-    fp.write('/* This file is auto-generated from waf */\n')
-    fp.write('#include "version.h"\n')
-    fp.write('\n')
-    fp.write('#define CTDB_VERSION_STRING "%s"\n' % get_version_string())
-    fp.close()
-
-
 def build(bld):
     if bld.env.standalone_ctdb:
         # enable building of public headers in the build tree
@@ -357,12 +348,6 @@ def build(bld):
     if bld.env.standalone_ctdb:
         bld.SAMBA_MKVERSION('version.h', '%s/VERSION' % vdir)
 
-    t = bld.SAMBA_GENERATOR('ctdb-version-header',
-                            target='include/ctdb_version.h',
-                            rule=gen_ctdb_version,
-                            dep_vars=['VERSION'])
-    t.env.VERSION = get_version_string()
-
     bld.env.PKGCONFIGDIR = '${LIBDIR}/pkgconfig'
 
     bld.RECURSE('lib/replace')