build: Add libbsd as a dep for LIBREPLACE_HOSTCC
authorAndrew Bartlett <abartlet@samba.org>
Mon, 20 Feb 2012 00:26:15 +0000 (11:26 +1100)
committerAndrew Bartlett <abartlet@samba.org>
Mon, 20 Feb 2012 01:58:20 +0000 (02:58 +0100)
Autobuild-User: Andrew Bartlett <abartlet@samba.org>
Autobuild-Date: Mon Feb 20 02:58:20 CET 2012 on sn-devel-104

lib/replace/wscript

index 5bafc1fe9f7a46e17061fae3dfbc1470b2f6bfcd..36c2f0f3e1e931cac93aa361cac7ddd3d5a096b1 100644 (file)
@@ -428,12 +428,16 @@ def build(bld):
                 REPLACE_HOSTCC_SOURCE += ' %s' % filename
                 break
 
+    extra_libs = ''
+    if bld.CONFIG_SET('HAVE_LIBBSD'): extra_libs += ' bsd'
+
     bld.SAMBA_SUBSYSTEM('LIBREPLACE_HOSTCC',
         REPLACE_HOSTCC_SOURCE,
         use_hostcc=True,
         use_global_deps=False,
         cflags='-DSOCKET_WRAPPER_DISABLE=1 -DNSS_WRAPPER_DISABLE=1 -DUID_WRAPPER_DISABLE=1 -D_SAMBA_HOSTCC_',
-        group='compiler_libraries'
+        group='compiler_libraries',
+        deps = extra_libs
     )
 
     REPLACE_SOURCE = REPLACE_HOSTCC_SOURCE
@@ -452,9 +456,6 @@ def build(bld):
     if not bld.CONFIG_SET('HAVE_INET_NTOP'):     REPLACE_SOURCE += ' inet_ntop.c'
     if not bld.CONFIG_SET('HAVE_INET_PTON'):     REPLACE_SOURCE += ' inet_pton.c'
 
-    extra_libs = ''
-    if bld.CONFIG_SET('HAVE_LIBBSD'): extra_libs += ' bsd'
-
     bld.SAMBA_LIBRARY('replace',
                       source=REPLACE_SOURCE,
                       group='base_libraries',