diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2019-03-13 17:39:22 +0000 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2019-03-13 17:39:22 +0000 |
commit | f6dc49cb9802cd2a6d808aec8748547dd6a3854f (patch) | |
tree | da84de057985291d936dff2f1e7baae9d95b4c3f /configure.in | |
parent | 9794fb227a831f403dd0c6b23c087385a3ccf8d6 (diff) | |
download | apr-f6dc49cb9802cd2a6d808aec8748547dd6a3854f.tar.gz |
Silence some leftover noisy trace logic
Quit redundantly looking up shlibpath_var
Backports: 1855443,1855444
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.7.x@1855445 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 9e07c6666..a2a55e519 100644 --- a/configure.in +++ b/configure.in @@ -264,8 +264,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 |