diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-08-31 11:31:10 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:16:58 -0500 |
commit | 5e214d5160ade4b727d7ba937292b5a6262c3bec (patch) | |
tree | 24c0c85ad4adfe4b1fe2103f937717d6bb1246e7 /source4/lib/talloc/Makefile.in | |
parent | e683a57f325909003fa17bf82fc6570c49ef5f1b (diff) | |
download | samba-5e214d5160ade4b727d7ba937292b5a6262c3bec.tar.gz samba-5e214d5160ade4b727d7ba937292b5a6262c3bec.tar.bz2 samba-5e214d5160ade4b727d7ba937292b5a6262c3bec.zip |
r17965: make talloc build more portable
metze
(This used to be commit 64ba7ffdb866cc74366842750d95a25b47266097)
Diffstat (limited to 'source4/lib/talloc/Makefile.in')
-rw-r--r-- | source4/lib/talloc/Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/lib/talloc/Makefile.in b/source4/lib/talloc/Makefile.in index cb8fb00406..8290f05e02 100644 --- a/source4/lib/talloc/Makefile.in +++ b/source4/lib/talloc/Makefile.in @@ -24,7 +24,9 @@ all: libtalloc.a testsuite $(EXTRA_TARGETS) testsuite: $(LIBOBJ) testsuite.o $(CC) $(CFLAGS) -o testsuite testsuite.o $(LIBOBJ) $(LIBS) -libtalloc.a: libtalloc.a($(LIBOBJ)) +libtalloc.a: $(LIBOBJ) + ar -rv $@ $(LIBOBJ) + @-ranlib $@ install: all ${INSTALLCMD} -d ${libdir} |