summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2019-03-13 17:37:54 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2019-03-13 17:37:54 +0000
commit233e0e1ebdddca6906b555e5960fa7b98fd814fd (patch)
tree06038de366acc7e6c5a1d94057751155c1e85794
parenta0c6078c80e24fe73216772ed744df77820c2eea (diff)
downloadlibapr-233e0e1ebdddca6906b555e5960fa7b98fd814fd.tar.gz
Quit redundantly looking up shlibpath_var
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@1855444 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--configure.in5
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 58bd7983c..3e70170b5 100644
--- a/configure.in
+++ b/configure.in
@@ -278,8 +278,11 @@ case $host in
AC_LIBTOOL_WIN32_DLL
AC_PROG_LIBTOOL
# get libtool's setting of shlibpath_var
- eval `grep "^shlibpath_var=[[A-Z_]]*$" $apr_builddir/libtool`
if test "x$shlibpath_var" = "x"; then
+ eval `grep "^shlibpath_var=[[A-Z_]]*$" $apr_builddir/libtool`
+ fi
+ if test "x$shlibpath_var" = "x"; then
+ AC_MSG_NOTICE([SHLIBPATH variable could not be determined])
shlibpath_var=REPLACE_WITH_YOUR_SHLIBPATH_VAR
fi
fi