diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-02-23 16:26:59 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:26:37 +1000 |
commit | c3d04fd8fc856604f529b8a194a41edc30c72684 (patch) | |
tree | 19b2edeb725ad911d51e38969fc8582026404cf1 /source4 | |
parent | 9bfe91c475c8654fbadbbc3ecbc56602f100dd3e (diff) | |
download | samba-c3d04fd8fc856604f529b8a194a41edc30c72684.tar.gz samba-c3d04fd8fc856604f529b8a194a41edc30c72684.tar.bz2 samba-c3d04fd8fc856604f529b8a194a41edc30c72684.zip |
build: don't distinguish system and local libs in wscript files
Diffstat (limited to 'source4')
-rw-r--r-- | source4/lib/ldb/wscript | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source4/lib/ldb/wscript b/source4/lib/ldb/wscript index c016dc6314..beae1af516 100644 --- a/source4/lib/ldb/wscript +++ b/source4/lib/ldb/wscript @@ -45,5 +45,4 @@ def build(bld): for t in LDB_TOOLS.split(): bld.SAMBA_BINARY(t, 'tools/%s.c tools/ldbutil.c tools/cmdline.c' % t, - deps='ldb', - syslibs='dl popt') + deps='ldb dl popt') |