From: Felix Fietkau Date: Thu, 6 Aug 2020 10:53:14 +0000 (+0200) Subject: build: set up host command for egrep X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=6c29604438a0c2cbf95930244319c41d57756d7d;p=openwrt%2Fstaging%2Fadrian.git build: set up host command for egrep It is used for the kernel build and uses GNU specific features Signed-off-by: Felix Fietkau --- diff --git a/include/prereq-build.mk b/include/prereq-build.mk index 83dad0f2dc..4637c6ca50 100644 --- a/include/prereq-build.mk +++ b/include/prereq-build.mk @@ -114,6 +114,10 @@ $(eval $(call SetupHostCommand,grep,Please install GNU 'grep', \ ggrep --version 2>&1 | grep GNU, \ grep --version 2>&1 | grep GNU)) +$(eval $(call SetupHostCommand,egrep,Please install GNU 'grep', \ + gegrep --version 2>&1 | grep GNU, \ + egrep --version 2>&1 | grep GNU)) + $(eval $(call SetupHostCommand,getopt, \ Please install an extended getopt version that supports --long, \ gnugetopt -o t --long test -- --test | grep '^ *--test *--', \