summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2018-03-14 09:42:42 +0100
committerAndy Polyakov <appro@openssl.org>2018-03-19 14:31:30 +0100
commit6d5e74f3fcd7135b829edd17758762de3fb2d594 (patch)
treedf2f0aa8633bd5b2f872836da50e682d23a31af0 /Configure
parentc911e5da3c8e09a9531149c95aa92c65ecdf4b99 (diff)
Configure: pass -no-integrated-as.
Occasionally you have to pass -no-integrated-as to clang, but we consider any -no-option as no-option. Don't touch -no-integrated-as. Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/5613)
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure4
1 files changed, 3 insertions, 1 deletions
diff --git a/Configure b/Configure
index 8efd8bfb0c..9b89f60790 100755
--- a/Configure
+++ b/Configure
@@ -638,7 +638,9 @@ while (@argvcopy)
{
s/^([^=]*)/lc($1)/e;
}
- s /^-no-/no-/; # some people just can't read the instructions
+
+ # some people just can't read the instructions, clang people have to...
+ s/^-no-(?!integrated-as)/no-/;
# rewrite some options in "enable-..." form
s /^-?-?shared$/enable-shared/;