PR: 2234
Submitted By: Matthias Andree <matthias.andree@gmx.de> Use correct path to openssl utility in c_rehash script.
This commit is contained in:
parent
d7f573fea6
commit
45078e6c52
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue