]> git.ipfire.org Git - thirdparty/openssl.git/commit - Configure
Configure: correct the check of env vars vs command line flags
authorRichard Levitte <levitte@openssl.org>
Thu, 8 Mar 2018 17:49:37 +0000 (18:49 +0100)
committerRichard Levitte <levitte@openssl.org>
Thu, 8 Mar 2018 19:26:40 +0000 (20:26 +0100)
commitfb174faaf51d8b11046873a6a51fc2d8d8c28952
treeb61bd992d77ddea54fd348ea0b422d0b8b9dd596
parent2bd3b626dddd57217faf7cc267f74754cce9bb58
Configure: correct the check of env vars vs command line flags

The check to detect if env / make variables conflicted with compiler /
linker flags on the configure command line went a little too far, and
would stop the configuration process if any such command line flag was
given, with no regard for the env / make variables at all.

This change refines the check so the stop only gets triggered if any
such flags were given AND any of the corresponding variables are set.

Reviewed-by: Andy Polyakov <appro@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5561)
Configure