From: Dr. Stephen Henson Date: Tue, 22 Feb 2011 12:44:29 +0000 (+0000) Subject: Don't try and update c_rehash for fipscanisteronly builds. X-Git-Tag: OpenSSL-fips-2_0-rc1~710 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=227437d292a855d210f8ae377d9301d2f4c09780 Don't try and update c_rehash for fipscanisteronly builds. --- diff --git a/Configure b/Configure index fbaccc4569..2dc1bebf3c 100755 --- a/Configure +++ b/Configure @@ -1926,7 +1926,9 @@ EOF $make_targets .= " gentests" if $symlink; (system $make_command.$make_targets) == 0 or exit $? if $make_targets ne ""; - if ( $perl =~ m@^/@) { + if ( $fipscanisteronly ) + {} + elsif ( $perl =~ m@^/@) { &dofile("tools/c_rehash",$perl,'^#!/', '#!%s','^my \$dir;$', 'my $dir = "' . $openssldir . '";', '^my \$prefix;$', 'my $prefix = "' . $prefix . '";'); &dofile("apps/CA.pl",$perl,'^#!/', '#!%s'); } else {