summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2007-11-14 10:51:32 +0100
committerMichael Adam <obnox@samba.org>2008-02-13 01:40:10 +0100
commitf231d03e53dcf291e0cb8870e531989ab855eae0 (patch)
treec75ce36c2242b32d8c5194bf7edab7220886faaf
parent7a7dcd9b1265b8f031c9a5e9c4cfa89216827a28 (diff)
downloadsamba-f231d03e53dcf291e0cb8870e531989ab855eae0.tar.gz
r25953: AIX make doesn't support $^.
(cherry picked from parts of commit 91133d27110ee6447dbc64f1c8d52cb90ca1a86c) Michael
-rw-r--r--source/lib/talloc/Makefile.in2
-rw-r--r--source/lib/tdb/Makefile.in2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/lib/talloc/Makefile.in b/source/lib/talloc/Makefile.in
index 619a8d008df..74c9557925d 100644
--- a/source/lib/talloc/Makefile.in
+++ b/source/lib/talloc/Makefile.in
@@ -45,7 +45,7 @@ libtalloc.a: $(LIBOBJ)
@-ranlib $@
$(SOLIB): $(LIBOBJ)
- $(CC) $(SHLD_FLAGS) -o $@ $^ $(SONAMEFLAG)$(SONAME)
+ $(CC) $(SHLD_FLAGS) -o $@ $(LIBOBJ) $(SONAMEFLAG)$(SONAME)
install: all
${INSTALLCMD} -d $(DESTDIR)$(libdir)
diff --git a/source/lib/tdb/Makefile.in b/source/lib/tdb/Makefile.in
index 738d8566b51..fd36ed078e1 100644
--- a/source/lib/tdb/Makefile.in
+++ b/source/lib/tdb/Makefile.in
@@ -74,7 +74,7 @@ $(SONAME): $(SOLIB)
ln -s $< $@
$(SOLIB): $(TDB_OBJ)
- $(CC) $(SHLD_FLAGS) -o $@ $^ $(SONAMEFLAG)$(SONAME)
+ $(CC) $(SHLD_FLAGS) -o $@ $(TDB_OBJ) $(SONAMEFLAG)$(SONAME)
TDB_LIB = libtdb.a