s4-waf: fixed make test for toplevel
authorAndrew Tridgell <tridge@samba.org>
Mon, 21 Feb 2011 05:45:53 +0000 (16:45 +1100)
committerAndrew Tridgell <tridge@samba.org>
Tue, 22 Feb 2011 01:51:10 +0000 (02:51 +0100)
amazingly, os.putenv() is broken. If you do os.putenv('FOO', '1') and
then do os.getenv('FOO') you don't get '1'

Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>

wscript

diff --git a/wscript b/wscript
index a31939e6bb37989e068e4bbce7c8b561e1ef99b0..b2e6f2a4efbd6d4aa93466a8173c745e5c6c43b2 100644 (file)
--- a/wscript
+++ b/wscript
@@ -26,10 +26,9 @@ samba_dist.DIST_BLACKLIST('README Manifest Read-Manifest-Now Roadmap source3/ '
 # install in /usr/local/samba by default
 Options.default_prefix = '/usr/local/samba'
 
+os.environ['TOPLEVEL_BUILD'] = '1'
 
 def set_options(opt):
-    os.putenv('TOPLEVEL_BUILD', '1')
-
     opt.BUILTIN_DEFAULT('NONE')
     opt.PRIVATE_EXTENSION_DEFAULT('samba4')
     opt.RECURSE('lib/replace')