From c310295bfe2af08da6a8985c3b586f4fa6e9ebf1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Sun, 6 Jun 2021 10:00:33 +0700 Subject: [PATCH] build-style/cmake: always depends on cmake in host All packages that build with cmake build-style switched from cmake-bootstrap to cmake. Remove the conditional. --- common/environment/build-style/cmake.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/common/environment/build-style/cmake.sh b/common/environment/build-style/cmake.sh index 4306b7b388..9de8567f46 100644 --- a/common/environment/build-style/cmake.sh +++ b/common/environment/build-style/cmake.sh @@ -1,7 +1,5 @@ if [ "$CHROOT_READY" ]; then - if [[ "$hostmakedepends" != *"cmake-bootstrap"* ]]; then - hostmakedepends+=" cmake" - fi + hostmakedepends+=" cmake" if [ "${make_cmd:-ninja}" = ninja ]; then hostmakedepends+=" ninja" fi