summaryrefslogtreecommitdiff
path: root/dynconfig
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2011-11-30 10:07:30 +1100
committerAndrew Bartlett <abartlet@samba.org>2011-12-15 23:36:22 +0100
commit9782501f0b9fafa171c4ed830abd8433b0be1f1b (patch)
tree40080c53f784d8c7a81e329601fd67ca21cdcace /dynconfig
parent1355f0ac8c3bd9067c06de7c103e4f571b97b08a (diff)
downloadsamba-9782501f0b9fafa171c4ed830abd8433b0be1f1b.tar.gz
dynconfig: added SBINDIR and BINDIR as updated dynconfig variables
this allows these to work correctly in a build environment, pointing at bin/
Diffstat (limited to 'dynconfig')
-rwxr-xr-xdynconfig/wscript2
1 files changed, 2 insertions, 0 deletions
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') }