diff options
author | Andrew Tridgell <tridge@samba.org> | 2006-08-22 23:32:19 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:16:32 -0500 |
commit | 28e140972066d745cf74a84b4aa60276da2bd4b1 (patch) | |
tree | e4870c2082948061066f86686cfa238169f9cd4f /source4 | |
parent | 5b9633e40d3230ff6e0e64879eefddfe7e9e8516 (diff) | |
download | samba-28e140972066d745cf74a84b4aa60276da2bd4b1.tar.gz samba-28e140972066d745cf74a84b4aa60276da2bd4b1.tar.bz2 samba-28e140972066d745cf74a84b4aa60276da2bd4b1.zip |
r17725: VPATH and builds out of the source directory causes problems with the
AIX 5.1 version of make. Putting a direct dependency on $(OBJS) works
around this, and should be harmless on other systems
(This used to be commit 6a7182b599d43d2da636dfb68547f0f4aea4050e)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/lib/ldb/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/ldb/Makefile.in b/source4/lib/ldb/Makefile.in index f6bd754857..d19037c897 100644 --- a/source4/lib/ldb/Makefile.in +++ b/source4/lib/ldb/Makefile.in @@ -63,7 +63,7 @@ EXAMPLES = examples/ldbreader examples/ldifreader DIRS = lib bin common ldb_tdb ldb_ldap ldb_sqlite3 modules tools examples tdb talloc -all: dirs $(BINS) $(LIBS) $(EXAMPLES) $(MANPAGES) doxygen +all: dirs $(OBJS) $(BINS) $(LIBS) $(EXAMPLES) $(MANPAGES) doxygen .c.o: @echo Compiling $*.c |