From e8236dd60ceb247e883309b1ff0d3e99088771be Mon Sep 17 00:00:00 2001 From: Martin Kraemer Date: Wed, 22 Aug 2001 15:27:45 +0000 Subject: [PATCH] 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 --- acinclude.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.50.1