From da5bee5345ce8f66eb36b8993b87b684e5cce614 Mon Sep 17 00:00:00 2001 From: Thorsten Glaser Date: Mon, 22 Oct 2018 19:28:50 +0200 Subject: [PATCH] build: fix umask detection bashism the leading 0 is optional and not emitted by some shells Signed-off-by: Thorsten Glaser --- include/prereq-build.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/prereq-build.mk b/include/prereq-build.mk index a416a2d232..f7da916f64 100644 --- a/include/prereq-build.mk +++ b/include/prereq-build.mk @@ -24,7 +24,7 @@ $(eval $(call TestHostCommand,case-sensitive-fs, \ $(eval $(call TestHostCommand,proper-umask, \ Please build with umask 022 - other values produce broken packages, \ - umask | grep -xE 00[012][012])) + umask | grep -xE 0?0[012][012])) $(eval $(call SetupHostCommand,gcc, \ Please install the GNU C Compiler (gcc) 4.8 or later, \ -- 2.30.2