aboutsummaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>1999-02-14 22:47:21 +0000
committerDr. Stephen Henson <steve@openssl.org>1999-02-14 22:47:21 +0000
commit1750ebcba914d87602007447433529f871d088f5 (patch)
tree9aa7ec07552e654e609a19faaa6ac3ec2006ece2 /Configure
parent5236efdbf57e68029d6899dcd2e9b9ea25951e6f (diff)
downloadopenssl-1750ebcba914d87602007447433529f871d088f5.zip
openssl-1750ebcba914d87602007447433529f871d088f5.tar.gz
openssl-1750ebcba914d87602007447433529f871d088f5.tar.bz2
Patch to Configure script. For some reason the BN_ASM part was truncated to
the first word which broke (at least) the Linux compile. Hopefully this wont break other platforms.
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure10
1 files changed, 6 insertions, 4 deletions
diff --git a/Configure b/Configure
index ef56bf7..27774a1 100755
--- a/Configure
+++ b/Configure
@@ -319,10 +319,12 @@ if ($no_asm)
$sha1_obj=$md5_obj=$rmd160_obj="";
}
-my ($bn1)=split(/\s+/,$bn_obj);
-$bn1 = "" unless defined $bn1;
-$bn1=$bn_asm unless ($bn1 =~ /\.o$/);
-$bn_obj="$bn1";
+#my ($bn1)=split(/\s+/,$bn_obj);
+#$bn1 = "" unless defined $bn1;
+#$bn1=$bn_asm unless ($bn1 =~ /\.o$/);
+#$bn_obj="$bn1";
+
+$bn_obj = $bn_asm unless $bn_obj ne "";
$des_obj=$des_enc unless ($des_obj =~ /\.o$/);
$bf_obj=$bf_enc unless ($bf_obj =~ /\.o$/);