diff options
author | Andrew Tridgell <tridge@samba.org> | 2006-08-22 03:47:32 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:16:24 -0500 |
commit | c4e83e8efc5caa91a670692eccb5778147e00741 (patch) | |
tree | aeddefee1694f264752e7cd3693c970fa50d4c40 | |
parent | 04d5c4aefd12818c30646d8475fb25b062de0877 (diff) | |
download | samba-c4e83e8efc5caa91a670692eccb5778147e00741.tar.gz samba-c4e83e8efc5caa91a670692eccb5778147e00741.tar.bz2 samba-c4e83e8efc5caa91a670692eccb5778147e00741.zip |
r17687: remove circular dependency
(This used to be commit b12fd256ff827f45f24c56edbc6f44248ba9b9a3)
-rw-r--r-- | source4/lib/ldb/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/ldb/Makefile.in b/source4/lib/ldb/Makefile.in index d3766962d3..b22a82a24e 100644 --- a/source4/lib/ldb/Makefile.in +++ b/source4/lib/ldb/Makefile.in @@ -91,8 +91,8 @@ all: dirs $(BINS) $(LIBS) $(EXAMPLES) $(MANPAGES) doxygen @mkdir -p `dirname $@` @$(CC) $(CFLAGS) -c $< -o $@ -dirs: $(DIRS) - mkdir -p $(DIRS) +dirs: + @mkdir -p $(DIRS) lib/libldb.a: $(OBJS) |