> I guess this is just a small typo because a search for the binary is
> done (lines 29--41) but the result is not used. The attached patch
> fixes the problem.
...and here's the patch I forgot to attach...
--
This email fills a much-needed gap in the archives.
--- tools/c_rehash.in.orig 2006-10-26 12:52:12.000000000 +0200
+++ tools/c_rehash.in 2009-04-16 15:54:33.000000000 +0200
@@ -31,6 +31,7 @@ if(! -x $openssl) {
foreach (split /$path_delim/, $ENV{PATH}) {
if(-x "$_/$openssl") {
$found = 1;
+ $openssl = "$_/$openssl";
last;
}
}