From ffd7c05aa72ee56b836903159540f9470aeef121 Mon Sep 17 00:00:00 2001 From: Michael Pratt Date: Thu, 20 Apr 2023 12:31:16 -0400 Subject: prereq-build: add check for true and false Some uses cases, like with autotools, need a path for 'true' if we use them to force something to skip. This will work by default on Linux hosts, and require MacOS hosts to get coreutils, which is currently installed in the CI for 'macos-latest' host. In the future, prereq stage can be reworked to search for the actual binary instead of relying on env. Signed-off-by: Michael Pratt --- include/prereq-build.mk | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'include/prereq-build.mk') diff --git a/include/prereq-build.mk b/include/prereq-build.mk index 8fae92ab97..14a2210880 100644 --- a/include/prereq-build.mk +++ b/include/prereq-build.mk @@ -8,6 +8,13 @@ include $(INCLUDE_DIR)/prereq.mk SHELL:=sh PKG_NAME:=Build dependency +$(eval $(call TestHostCommand,true, \ + Please install GNU 'coreutils', \ + $(TRUE))) + +$(eval $(call TestHostCommand,false, \ + Please install GNU 'coreutils', \ + $(FALSE); [ $$$$$$$$? = 1 ] && $(TRUE))) # Required for the toolchain $(eval $(call TestHostCommand,working-make, \ -- cgit v1.2.3