At line 62:
$fipsdir =~ tr/\//${o}/;But that's before the platform file has been loaded, so $o hasn't been set. And tr doesn't do variable expansion, so this won't work anyway. Using s rather than tr and moving it down the file (after the platform file has been loaded, so line 236 or so) seems to work. ______________________________________________________________________ OpenSSL Project http://www.openssl.org Development Mailing List [email protected] Automated List Manager [email protected]
