diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-10-21 17:41:42 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-10-21 19:03:27 +1100 |
commit | 0966776b363ac7a66a5d22c05d474e35e6994c68 (patch) | |
tree | da8959513507a4360bc5c7a0f8112505080da552 /buildtools/wafsamba/wafsamba.py | |
parent | 97ce2d89655497320ca5842b9dd8dd0d7071bb64 (diff) | |
download | samba-0966776b363ac7a66a5d22c05d474e35e6994c68.tar.gz |
waf: fixed the handling of -Wl,-no-undefined
this flag was not being propogated to our link rules, so we were not
in fact enforcing no undefined symbols in libraries.
Diffstat (limited to 'buildtools/wafsamba/wafsamba.py')
-rw-r--r-- | buildtools/wafsamba/wafsamba.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/buildtools/wafsamba/wafsamba.py b/buildtools/wafsamba/wafsamba.py index 9927aef649..280ffd6ee2 100644 --- a/buildtools/wafsamba/wafsamba.py +++ b/buildtools/wafsamba/wafsamba.py @@ -197,7 +197,6 @@ def SAMBA_LIBRARY(bld, libname, source, features = features, source = [], target = bundled_name, - samba_cflags = CURRENT_LDFLAGS(bld, libname, cflags), depends_on = depends_on, samba_deps = deps, samba_includes = includes, @@ -296,7 +295,6 @@ def SAMBA_BINARY(bld, binname, source, features = features, source = [], target = binname, - samba_cflags = CURRENT_LDFLAGS(bld, binname, cflags), samba_deps = deps, samba_includes = includes, local_include = local_include, |