From: Dr. Stephen Henson Date: Wed, 22 Apr 2009 16:50:42 +0000 (+0000) Subject: Find openssl utility if on the PATH. X-Git-Tag: OpenSSL_1_0_0-beta3~130 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=1b08bcbfe3dbc98b7d1ef2191e3c44211d0c79e0;hp=346b1001eb239a122e955ece3a44ad38c4a78898;ds=sidebyside Find openssl utility if on the PATH. --- 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; } }