summaryrefslogtreecommitdiff
path: root/nsswitch
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2016-09-19 16:21:31 +0200
committerJim McDonough <jmcd@samba.org>2016-09-20 08:00:08 +0200
commitd8a5565ae647352d11d622bd4e73ff4568678a7c (patch)
treed401749d68f94226ace3c7e09c64c48def263521 /nsswitch
parent124ae4e861f048fe015bff32ace4abff4d3e6c62 (diff)
downloadsamba-d8a5565ae647352d11d622bd4e73ff4568678a7c.tar.gz
waf: Explicitly link against libnss_wins.so
If we do not specify replace as a depencency here, it will not link to libreplace using an rpath. BUG: https://bugzilla.samba.org/show_bug.cgi?id=12277 Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org> Reviewed-by: Jim McDonough <jmcd@samba.org> Autobuild-User(master): Jim McDonough <jmcd@samba.org> Autobuild-Date(master): Tue Sep 20 08:00:08 CEST 2016 on sn-devel-144
Diffstat (limited to 'nsswitch')
-rw-r--r--nsswitch/wscript_build2
1 files changed, 1 insertions, 1 deletions
diff --git a/nsswitch/wscript_build b/nsswitch/wscript_build
index f2868963258..ab8f8eaf270 100644
--- a/nsswitch/wscript_build
+++ b/nsswitch/wscript_build
@@ -42,7 +42,7 @@ if (Utils.unversioned_sys_platform() == 'linux' or (host_os.rfind('gnu') > -1)):
bld.SAMBA3_LIBRARY('nss_wins',
keep_underscore=True,
source='wins.c',
- deps='''wbclient''',
+ deps='wbclient replace',
public_headers=[],
public_headers_install=False,
pc_files=[],