Configure: check all DEPEND values against GENERATE, not just .h files
authorRichard Levitte <levitte@openssl.org>
Thu, 18 Mar 2021 04:07:11 +0000 (05:07 +0100)
committerRichard Levitte <levitte@openssl.org>
Fri, 19 Mar 2021 15:44:46 +0000 (16:44 +0100)
commit2d101b0f493a3066c5ea7152c00c44d70fcea4d8
tree971eaa531c07528a69e26ee89b52ca8818ede8bd
parent6084b5c2c9ab5a167d808d6f6c9b21f98c99bbc2
Configure: check all DEPEND values against GENERATE, not just .h files

All files that are given to DEPEND statements in build.info files are
being checked against GENERATE statements, to see if it's reasonable
to look for them in the source tree or not.  This was only done for .h
files, for reasons that are lost in history.  We now change that check
to look at all files instead.

Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14598)
Configure