summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-04-10 23:28:24 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-04-10 23:28:24 +0000
commit284e2d2b379f4333a14a1657a8c06bb018393c35 (patch)
tree83861d4fc1b0145561f2f3c9643df8cf3978e2ca /Configure
parent4582626544dd7a20099c3d0a33b13717dab2a24f (diff)
fix fipscanisteronly autodetect
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/Configure b/Configure
index 88d87a5981..eca6dcf8e9 100755
--- a/Configure
+++ b/Configure
@@ -710,7 +710,7 @@ my %disabled = ( # "what" => "comment" [or special keyword "experimental
my @experimental = ();
# If ssl directory missing assume truncated FIPS tarball
-if (! -d ssl)
+if (!-d "ssl")
{
print STDERR "Auto Configuring fipsonly\n";
$fips = 1;
@@ -1124,6 +1124,7 @@ my $exp_cflags = "";
if ($fipscanisteronly == 2)
{
+print STDERR "ADDING FIPSSYM\n";
$exp_cflags .= " -DOPENSSL_FIPSSYMS";
}