summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2011-02-15 16:29:13 +1100
committerAndrew Tridgell <tridge@samba.org>2011-02-18 15:09:46 +1100
commit35a11630c1727677df24cdaa42526e89f7614172 (patch)
tree352c5a79c620748906c9fa7bb37c1abeb66fcd53 /wscript
parent3a5b199752a925e52a207ab0547a2a77c31ab097 (diff)
downloadsamba-35a11630c1727677df24cdaa42526e89f7614172.tar.gz
samba-35a11630c1727677df24cdaa42526e89f7614172.tar.bz2
samba-35a11630c1727677df24cdaa42526e89f7614172.zip
build: remember the flags used for undefined variable errors
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'wscript')
-rw-r--r--wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/wscript b/wscript
index 942a3e9a58..22f864f098 100644
--- a/wscript
+++ b/wscript
@@ -107,14 +107,14 @@ def configure(conf):
# we don't want any libraries or modules to rely on runtime
# resolution of symbols
if sys.platform != "openbsd4":
- conf.ADD_LDFLAGS('-Wl,-no-undefined', testflags=True)
+ conf.env.undefined_ldflags = conf.ADD_LDFLAGS('-Wl,-no-undefined', testflags=True)
# gentoo always adds this. We want our normal build to be as
# strict as the strictest OS we support, so adding this here
# allows us to find problems on our development hosts faster.
# It also results in faster load time.
if sys.platform != "openbsd4":
- conf.ADD_LDFLAGS('-Wl,--as-needed', testflags=True)
+ conf.env.asneeded_ldflags = conf.ADD_LDFLAGS('-Wl,--as-needed', testflags=True)
if not conf.CHECK_NEED_LC("-lc not needed"):
conf.ADD_LDFLAGS('-lc', testflags=False)