diff options
Diffstat (limited to 'libcli')
-rw-r--r-- | libcli/nbt/wscript_build | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/libcli/nbt/wscript_build b/libcli/nbt/wscript_build index 7229d12e2e..a3c22dca07 100644 --- a/libcli/nbt/wscript_build +++ b/libcli/nbt/wscript_build @@ -14,16 +14,16 @@ bld.SAMBA_LIBRARY('cli-nbt', ) -bld.SAMBA_BINARY('nmblookup', - source='tools/nmblookup.c', - manpages='man/nmblookup.1', - deps='samba-hostconfig samba-util cli-nbt popt POPT_SAMBA netif LIBCLI_RESOLVE' - ) - - -bld.SAMBA_PYTHON('python_netbios', - source='pynbt.c', - public_deps='cli-nbt DYNCONFIG samba-hostconfig', - realname='samba/netbios.so' - ) +if bld.env._SAMBA_BUILD_ == 4: + bld.SAMBA_BINARY('nmblookup', + source='tools/nmblookup.c', + manpages='man/nmblookup.1', + deps='samba-hostconfig samba-util cli-nbt popt POPT_SAMBA netif LIBCLI_RESOLVE' + ) + + bld.SAMBA_PYTHON('python_netbios', + source='pynbt.c', + public_deps='cli-nbt DYNCONFIG samba-hostconfig', + realname='samba/netbios.so' + ) |