diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-10-24 10:42:58 -0700 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-10-26 10:17:17 -0700 |
commit | 8cf61377aa388724150699618f5cd60682ffde37 (patch) | |
tree | 6fb909162d76a2315c08a2711b7f6bd6d83ea3d4 /libcli/nbt | |
parent | b2af2fd3de37296c5589fd5f34bb3353227272cd (diff) | |
download | samba-8cf61377aa388724150699618f5cd60682ffde37.tar.gz |
waf: Remove lib prefix from libraries manually.
Diffstat (limited to 'libcli/nbt')
-rw-r--r-- | libcli/nbt/wscript_build | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libcli/nbt/wscript_build b/libcli/nbt/wscript_build index eb1736932a7..ebd822256de 100644 --- a/libcli/nbt/wscript_build +++ b/libcli/nbt/wscript_build @@ -9,7 +9,7 @@ bld.SAMBA_SUBSYSTEM('NDR_NBT_BUF', bld.SAMBA_LIBRARY('cli_nbt', source='lmhosts.c nbtsocket.c namequery.c nameregister.c namerefresh.c namerelease.c dns_hosts_file.c', - public_deps='LIBNDR NDR_NBT tevent UTIL_TEVENT NDR_SECURITY samba_socket libsamba-util', + public_deps='ndr NDR_NBT tevent UTIL_TEVENT NDR_SECURITY samba_socket samba-util', private_library=True ) @@ -17,25 +17,25 @@ bld.SAMBA_LIBRARY('cli_nbt', bld.SAMBA_BINARY('nmblookup', source='tools/nmblookup.c', manpages='man/nmblookup.1', - deps='libsamba-hostconfig libsamba-util cli_nbt popt POPT_SAMBA netif LIBCLI_RESOLVE' + deps='samba-hostconfig samba-util cli_nbt popt POPT_SAMBA netif LIBCLI_RESOLVE' ) bld.SAMBA_SUBSYSTEM('LIBCLI_NDR_NETLOGON', source='../ndr_netlogon.c', - public_deps='LIBNDR NDR_SECURITY' + public_deps='ndr NDR_SECURITY' ) bld.SAMBA_SUBSYSTEM('LIBCLI_NETLOGON', source='../netlogon.c', - public_deps='libsamba-util LIBCLI_NDR_NETLOGON' + public_deps='samba-util LIBCLI_NDR_NETLOGON' ) bld.SAMBA_PYTHON('python_netbios', source='pynbt.c', - public_deps='cli_nbt DYNCONFIG libsamba-hostconfig', + public_deps='cli_nbt DYNCONFIG samba-hostconfig', realname='samba/netbios.so' ) |