dynconfig: added SBINDIR and BINDIR as updated dynconfig variables
authorAndrew Tridgell <tridge@samba.org>
Tue, 29 Nov 2011 23:07:30 +0000 (10:07 +1100)
committerAndrew Bartlett <abartlet@samba.org>
Thu, 15 Dec 2011 22:36:22 +0000 (23:36 +0100)
this allows these to work correctly in a build environment, pointing
at bin/

dynconfig/wscript

index 28f6e8dfc7e170f817b151d04562f5f196ecb6b3..374ede27bcd023fa97b16830496ffeaa6f963287 100755 (executable)
@@ -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') }