summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>1999-07-16 00:49:51 +0000
committerUlf Möller <ulf@openssl.org>1999-07-16 00:49:51 +0000
commitf6f0420dfe612c5668831d273fe32e0e144838d4 (patch)
tree8e5442334b3d4f6b480878a88076020525455097 /Configure
parentcfa3747ba95ed154caedf99f847082c72f867a27 (diff)
Did not check the last SDIR line for excluded algorithms.
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/Configure b/Configure
index d88ae23977..b823037c33 100755
--- a/Configure
+++ b/Configure
@@ -509,13 +509,13 @@ while (<IN>)
{
chop;
$sdirs = 1 if /^SDIRS=/;
- $sdirs = 0 unless /\\$/;
if ($sdirs) {
my $dir;
foreach $dir (@skip) {
s/$dir//;
}
}
+ $sdirs = 0 unless /\\$/;
s/^VERSION=.*/VERSION=$version/;
s/^MAJOR=.*/MAJOR=$major/;
s/^MINOR=.*/MINOR=$minor/;