From 8d9db418804700d9e6368122b3468db1cea4da07 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Wed, 14 Apr 2010 23:07:28 +0000 Subject: [PATCH] PR: 2234 Submitted By: Matthias Andree Use correct path to openssl utility in c_rehash script. --- tools/c_rehash.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/c_rehash.in b/tools/c_rehash.in index 6dd3c24fc1..bfc4a69ed4 100644 --- a/tools/c_rehash.in +++ b/tools/c_rehash.in @@ -7,6 +7,7 @@ my $openssl; my $dir; +my $prefix; if(defined $ENV{OPENSSL}) { $openssl = $ENV{OPENSSL}; @@ -24,7 +25,7 @@ if (defined(&Cwd::getcwd)) { } my $path_delim = ($pwd =~ /^[a-z]\:/i) ? ';' : ':'; # DOS/Win32 or Unix delimiter? -$ENV{PATH} .= "$path_delim$dir/bin"; +$ENV{PATH} = "$prefix/bin" . ($ENV{PATH} ? $path_delim . $ENV{PATH} : ""); # prefix our path if(! -x $openssl) { my $found = 0; -- 2.34.1