diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-11-12 17:54:41 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-11-12 17:42:13 +0000 |
commit | 7b964c72698054337e1c40df23550edad96de8b5 (patch) | |
tree | 44d7294a925a750a556bfa121839e218977bb205 /source4/wscript | |
parent | a0c2040ab698c8f053d12b4f53b0ac76a8f5ebac (diff) | |
download | samba-7b964c72698054337e1c40df23550edad96de8b5.tar.gz samba-7b964c72698054337e1c40df23550edad96de8b5.tar.bz2 samba-7b964c72698054337e1c40df23550edad96de8b5.zip |
samba_version: When working from git checkout, display git revision SHA1 rather
than Bazaar revision ids.
Diffstat (limited to 'source4/wscript')
-rw-r--r-- | source4/wscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/wscript b/source4/wscript index 8b2ab58d27..bf4ccbdfca 100644 --- a/source4/wscript +++ b/source4/wscript @@ -18,7 +18,7 @@ def load_version(have_git=False): if not have_git: env = samba_utils.LOAD_ENVIRONMENT() have_git = 'GIT' in env - version = wafsamba.samba_version_file("./VERSION", have_git=have_git) + version = wafsamba.samba_version_file("./VERSION", "..", have_git=have_git) Utils.g_module.VERSION = version.STRING return version |