summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2005-06-22 23:44:44 +0000
committerAndy Polyakov <appro@openssl.org>2005-06-22 23:44:44 +0000
commit5df70a9e21646bb9c9c9526033878e793c56ded4 (patch)
tree49fabe1deb303ab22aae4a0b4f7416e5128ac366 /Configure
parentcbe52c3166bff232be2229f5120ed8d55a12ccfc (diff)
no-asm didn't prevent make from compiling assembler modules.
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/Configure b/Configure
index e123093de5..768f18f2c6 100755
--- a/Configure
+++ b/Configure
@@ -885,8 +885,8 @@ foreach (sort (keys %disabled))
$openssl_other_defines .= "#define OPENSSL_NO_$ALGO\n";
print " OPENSSL_NO_$ALGO";
- if (/^err$/)
- { $flags .= "-DOPENSSL_NO_ERR "; }
+ if (/^err$/) { $flags .= "-DOPENSSL_NO_ERR "; }
+ elsif (/^asm$/) { $no_asm = 1; }
}
else
{