summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2003-09-29 14:20:02 +0000
committerJoe Orton <jorton@apache.org>2003-09-29 14:20:02 +0000
commit1d33bf1b33512a43ce785c99bd45a55469b6b192 (patch)
treeae38ee25e5e2efcd381cacb7ab80d899f3bbe5cc /Makefile.in
parent2136b170867542b9aaddcc07034508e8dddf84c6 (diff)
downloadapr-1d33bf1b33512a43ce785c99bd45a55469b6b192.tar.gz
Link libapr against the libraries on which it depends for all
platforms, not just AIX. PR: 18420 * configure.in: Remove lib_target_libs setting for AIX. * Makefile.in ($(TARGET_LIB)): Use ALL_LIBS instead of configured lib_target_libs value in $(LINK) line. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@64664 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 6402e79ce..0c1bdc174 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -100,7 +100,7 @@ install: $(TARGET_LIB)
$(TARGET_LIB):
@for i in $(SUBDIRS); do objects="$$objects $$i/*.@so_ext@"; done ; \
- tmpcmd="$(LINK) @lib_target@ @lib_target_libs@"; \
+ tmpcmd="$(LINK) @lib_target@ $(ALL_LIBS)"; \
echo $$tmpcmd; \
$$tmpcmd && touch $@