From 1b08bcbfe3dbc98b7d1ef2191e3c44211d0c79e0 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Wed, 22 Apr 2009 16:50:42 +0000 Subject: [PATCH 1/1] Find openssl utility if on the PATH. --- tools/c_rehash.in | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/c_rehash.in b/tools/c_rehash.in index 96a73aeedd..6dd3c24fc1 100644 --- a/tools/c_rehash.in +++ b/tools/c_rehash.in @@ -31,6 +31,7 @@ if(! -x $openssl) { foreach (split /$path_delim/, $ENV{PATH}) { if(-x "$_/$openssl") { $found = 1; + $openssl = "$_/$openssl"; last; } } -- 2.34.1