diff options
author | Günther Deschner <gd@samba.org> | 2011-06-28 11:31:02 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-06-28 17:54:41 +0200 |
commit | 56db9c9f274d414ad435bd7cd3f522f11257458e (patch) | |
tree | 95115bc8ec947df3bb0c81e43445ab1c8f265821 /dynconfig | |
parent | 8bc3f957bc098ee9310b468ce463a75090873bc6 (diff) | |
download | samba-56db9c9f274d414ad435bd7cd3f522f11257458e.tar.gz |
s3-waf: remove s3-waf specific dynconfig.
This merge finally makes --with-logfilebase=foo and friends work appropriately.
Andrews, Andreas, please check.
Guenther
Autobuild-User: Günther Deschner <gd@samba.org>
Autobuild-Date: Tue Jun 28 17:54:42 CEST 2011 on sn-devel-104
Diffstat (limited to 'dynconfig')
-rwxr-xr-x | dynconfig/wscript | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/dynconfig/wscript b/dynconfig/wscript index 35af13db7ec..d6b07efb5dd 100755 --- a/dynconfig/wscript +++ b/dynconfig/wscript @@ -107,9 +107,12 @@ Build.BuildContext.dynconfig_cflags = dynconfig_cflags def build(bld): cflags = bld.dynconfig_cflags() + version_header = 'version.h' + if not os.getenv('TOPLEVEL_BUILD'): + version_header = 'include/version.h' bld.SAMBA_SUBSYSTEM('DYNCONFIG', 'dynconfig.c', deps='replace talloc', - public_headers=os_path_relpath(os.path.join(Options.launch_dir, 'version.h'), bld.curdir), + public_headers=os_path_relpath(os.path.join(Options.launch_dir, version_header), bld.curdir), header_path='samba', cflags=cflags) |