From d2bc45e7ffb4e8d47878a6fc53c5f5c90dfd2114 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 17 Jun 2011 15:21:39 +1000 Subject: build: only use the git version on install, not in the build tree having the git version in our version.h in the build tree is annoying for developers, as every time you commit or rebase you need to spend several minutes re-linking. This changes it to use the git version only on install, which is much more useful as when you actually install the binaries you may be using them in a way that reporting the version is useful Pair-Programmed-With: Andrew Bartlett Autobuild-User: Andrew Tridgell Autobuild-Date: Fri Jun 17 08:37:06 CEST 2011 on sn-devel-104 --- wscript_build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wscript_build') diff --git a/wscript_build b/wscript_build index 43e69a59042..20437577461 100644 --- a/wscript_build +++ b/wscript_build @@ -27,7 +27,7 @@ bld.env.public_headers_skip = ['param/param_proto.h', 'lib/ldb_compat.h'] # force headers to use SAMBA4 rules bld.env.public_headers_replace = { '#if _SAMBA_BUILD_ == 4' : '#if 1 /* _SAMBA_BUILD_ == 4 */' } -samba_version.load_version(bld.env) +samba_version.load_version(bld.env, is_install=bld.is_install) bld.SAMBA_MKVERSION('version.h') # bld.ENABLE_MAGIC_ORDERING() -- cgit