From: Andrew Tridgell Date: Tue, 29 Nov 2011 23:07:30 +0000 (+1100) Subject: dynconfig: added SBINDIR and BINDIR as updated dynconfig variables X-Git-Tag: tevent-0.9.15~734 X-Git-Url: http://git.samba.org/?a=commitdiff_plain;h=9782501f0b9fafa171c4ed830abd8433b0be1f1b;p=ddiss%2Fsamba.git dynconfig: added SBINDIR and BINDIR as updated dynconfig variables this allows these to work correctly in a build environment, pointing at bin/ --- diff --git a/dynconfig/wscript b/dynconfig/wscript index 28f6e8dfc7e..374ede27bcd 100755 --- a/dynconfig/wscript +++ b/dynconfig/wscript @@ -340,6 +340,8 @@ def dynconfig_cflags(bld, list=None): override = { 'MODULESDIR' : 'bin/modules', 'PYTHONDIR' : 'bin/python', 'PYTHONARCHDIR' : 'bin/python', + 'BINDIR' : 'bin', + 'SBINDIR' : 'bin', 'CODEPAGEDIR' : os.path.join(bld.env.srcdir, 'codepages'), 'SCRIPTSBINDIR' : os.path.join(bld.env.srcdir, 'source4/scripting/bin'), 'SETUPDIR' : os.path.join(bld.env.srcdir, 'source4/setup') }