Merge pull request #5272 from heitbaum/tc

toolchain: enable correct handling of cmake-make in check_toolchain_config
This commit is contained in:
CvH 2021-08-11 13:24:54 +02:00 committed by GitHub
commit d9785e5a8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -214,6 +214,9 @@ check_toolchain_config() {
if [ "${toolchain}" == "AUTOTOOLS" ]; then
toolchain="CONFIGURE"
fi
if [ "${toolchain}" == "CMAKE-MAKE" ]; then
toolchain="CMAKE"
fi
for var in "${!PKG_@}"; do
if [[ "${var}" =~ INSTALL_OPTS_ || "${var}" =~ _MAKE_OPTS ]]; then
continue