From: Martin Kraemer Date: Wed, 22 Aug 2001 15:27:45 +0000 (+0000) Subject: In absence of an explicit --with-ssl= path, X-Git-Tag: 2.0.25~195 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e8236dd60ceb247e883309b1ff0d3e99088771be;p=apache In absence of an explicit --with-ssl= path, use the PATH order before trying hard-coded /usr/local paths git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90489 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/acinclude.m4 b/acinclude.m4 index 92ecdb7dbe..5e7a529481 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -402,7 +402,7 @@ if test "x$ap_ssltk_base" = "x"; then # ap_ssltk_try="" # The IFS=... trick eliminates the colons from $PATH, without using an external program - for p in /usr/local/openssl/bin /usr/local/ssl/bin `IFS=":$IFS"; echo $PATH`; do + for p in `IFS=":$IFS"; echo $PATH` /usr/local/openssl/bin /usr/local/ssl/bin; do if test -f "$p/openssl"; then ap_ssltk_try="$ap_ssltk_try $p" fi