summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2019-03-13 17:37:54 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2019-03-13 17:37:54 +0000
commita46ec9441cdb96e81d105e45e66362aa46fd0ce9 (patch)
tree06038de366acc7e6c5a1d94057751155c1e85794 /configure.in
parent3c07b41f082993c3ac210c4484bd5ffe0a2baf8a (diff)
downloadapr-a46ec9441cdb96e81d105e45e66362aa46fd0ce9.tar.gz
Quit redundantly looking up shlibpath_var
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1855444 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'configure.in')
-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