diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-11-14 10:51:32 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:45:16 +0100 |
commit | 35efbc84c73a2c9f9bdbdfb0faf624721505fe9e (patch) | |
tree | 23b99a1c53871ddfe37268a9b760121e1c392934 /source4/lib/talloc/Makefile.in | |
parent | 777ea0d434c05817349c204b43ac252e4ed10eda (diff) | |
download | samba-35efbc84c73a2c9f9bdbdfb0faf624721505fe9e.tar.gz samba-35efbc84c73a2c9f9bdbdfb0faf624721505fe9e.tar.bz2 samba-35efbc84c73a2c9f9bdbdfb0faf624721505fe9e.zip |
r25953: AIX make doesn't support $^.
(This used to be commit 91133d27110ee6447dbc64f1c8d52cb90ca1a86c)
Diffstat (limited to 'source4/lib/talloc/Makefile.in')
-rw-r--r-- | source4/lib/talloc/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/talloc/Makefile.in b/source4/lib/talloc/Makefile.in index 619a8d008d..74c9557925 100644 --- a/source4/lib/talloc/Makefile.in +++ b/source4/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) |