Subject: | openssl not found if in program files. |
make test was using the pure perl version of openssl as a result of it
not being able to find my installation of openssl.
1. Which opensslexe was returning: c:\program
files\openss\bin\openssl.exe
2. this when executed on the following line failed because there is a
space in the command line. I suggest changing the openssl path with
the following addiion
OLD lines:
my $openssl = `which $bin`;
chomp $openssl;
New Line
$openssl="\"$openssl\"";