summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2006-03-10 06:40:52 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2006-03-10 06:40:52 +0000
commitf09ee4748baccb959bcb70238f3a9ea928fbabaf (patch)
tree2c449d76aab1c0c695ff30f7f99b39daa2c7172d
parent84f92f83843eefb87c887061e6242b043f573a9b (diff)
downloadapr-f09ee4748baccb959bcb70238f3a9ea928fbabaf.tar.gz
Throw away a horrible change; each time we layer on more garbage to libtool
et al we've caused apr to fail in more peculiar ways on more platforms. In this case, let libtool do exactly what we want, which is to resolve the build-path flavor of libapr-1.la and test exactly what we've most recently changed (and, for that matter, to have make check function whatsoever before the library has been installed.) git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@384715 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--test/Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Makefile.in b/test/Makefile.in
index b5b9fd32b..e6701e2c7 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -37,9 +37,9 @@ CLEAN_SUBDIRS = internal
INCDIR=../include
INCLUDES=-I$(INCDIR) -I$(srcdir)/../include
-# link programs using -no-install to get real executables not
-# libtool wrapper scripts which link an executable when first run.
-LINK_PROG = $(LIBTOOL) $(LTFLAGS) --mode=link $(LT_LDFLAGS) $(COMPILE) -no-install $(ALL_LDFLAGS) -o $@
+# uses libtool wrapper scripts which ensures we are testing the currently built
+# library in ../.libs/, not the installed/stale flavor due to -rpath.
+LINK_PROG = $(LIBTOOL) $(LTFLAGS) --mode=link $(LT_LDFLAGS) $(COMPILE) $(ALL_LDFLAGS) -o $@
check: $(STDTEST_PORTABLE) $(STDTEST_NONPORTABLE)
for prog in $(STDTEST_PORTABLE) $(STDTEST_NONPORTABLE); do \