summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJo-Philipp Wich2019-03-15 18:23:31 +0000
committerJo-Philipp Wich2019-10-18 17:48:49 +0000
commit9bb5dac5937698252ea0fc97c255aa7a6db0db84 (patch)
tree32743a414c64dc514570ea169255a155c94f5a81
parentc7c14aaad36bb3d12dbcc826904154a1bc73c713 (diff)
downloadopenwrt-9bb5dac5937698252ea0fc97c255aa7a6db0db84.tar.gz
build: fix seq host tool check
Problem found on alpine linux when trying to `./scripts/feeds update -a`, which results in `Build dependency: Missing seq command`. Ref: https://github.com/openwrt/openwrt/pull/1926 Suggested-by: imShara <shara@protonmail.com> [reworded commit and turned faulty Sob into Suggested-by] Signed-off-by: Jo-Philipp Wich <jo@mein.io>
-rw-r--r--include/prereq-build.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/prereq-build.mk b/include/prereq-build.mk
index 0f2a35c93b..4c59910056 100644
--- a/include/prereq-build.mk
+++ b/include/prereq-build.mk
@@ -105,9 +105,9 @@ $(eval $(call SetupHostCommand,cp,Please install GNU fileutils, \
gcp --help 2>&1 | grep 'Copy SOURCE', \
cp --help 2>&1 | grep 'Copy SOURCE'))
-$(eval $(call SetupHostCommand,seq,, \
+$(eval $(call SetupHostCommand,seq,Please install seq, \
gseq --version, \
- seq --version))
+ seq --version 2>&1 | grep seq))
$(eval $(call SetupHostCommand,awk,Please install GNU 'awk', \
gawk --version 2>&1 | grep GNU, \