Skip to content

Commit

Permalink
build: fix seq host tool check
Browse files Browse the repository at this point in the history
Problem found on alpine linux when trying to `./scripts/feeds update -a`,
which results in `Build dependency: Missing seq command`.

Ref: openwrt/openwrt#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>
  • Loading branch information
jow- authored and jollaman999 committed Oct 26, 2019
1 parent ef867d5 commit 90546cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/prereq-build.mk
Expand Up @@ -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, \
Expand Down

0 comments on commit 90546cf

Please sign in to comment.