summaryrefslogtreecommitdiff
path: root/source4/lib/ldb
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2007-11-15 13:07:08 +0100
committerStefan Metzmacher <metze@samba.org>2007-12-21 05:45:22 +0100
commit9338ca39687f310730949475ba765291058014a0 (patch)
tree7617783808bcb9484d748fe8e341e886e88c8e2f /source4/lib/ldb
parentef22b1a477e11d0036ca9e267c751b67d2bc541c (diff)
downloadsamba-9338ca39687f310730949475ba765291058014a0.tar.gz
samba-9338ca39687f310730949475ba765291058014a0.tar.bz2
samba-9338ca39687f310730949475ba765291058014a0.zip
r25967: ldb: a module doesn't need to link against $(LIBS)
As the main library already links to it. metze (This used to be commit f6a8c36be6def543363fe1a2af9c0f875a07bbb5)
Diffstat (limited to 'source4/lib/ldb')
-rw-r--r--source4/lib/ldb/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/ldb/Makefile.in b/source4/lib/ldb/Makefile.in
index 1a1fdd78eb..f69fcb8ed6 100644
--- a/source4/lib/ldb/Makefile.in
+++ b/source4/lib/ldb/Makefile.in
@@ -127,7 +127,7 @@ lib/libnss_ldb.$(SHLIBEXT).2: $(NSS_OBJ) $(LIBS) bin/libldb.a
$(CC) $(SHLD_FLAGS) $(SONAMEFLAG)libnss_ldb.$(SHLIBEXT).2 -o lib/libnss_ldb.$(SHLIBEXT).2 $(NSS_OBJ) $(OBJS) $(LIB_FLAGS)
sample_module.$(SHLIBEXT): tests/sample_module.o
- $(CC) $(SHLD_FLAGS) $(LIBS) $(LDFLAGS) -o $@ tests/sample_module.o
+ $(CC) $(SHLD_FLAGS) $(LDFLAGS) -o $@ tests/sample_module.o
bin/ldbadd: tools/ldbadd.o tools/cmdline.o $(LIBS)
$(CC) -o bin/ldbadd tools/ldbadd.o tools/cmdline.o $(LIB_FLAGS) $(LD_EXPORT_DYNAMIC)