diff options
| author | Paul Spooren | 2021-10-01 04:26:14 +0000 |
|---|---|---|
| committer | Paul Spooren | 2021-10-01 04:32:20 +0000 |
| commit | 16e83a7491bb038187e918273671894992ae003c (patch) | |
| tree | a06666a9d80128ac07d924e63f40e8169bbd0380 | |
| parent | fca5ad55d292f8e481406123d0e95b3c85d39733 (diff) | |
| download | openwrt-16e83a7491bb038187e918273671894992ae003c.tar.gz | |
prereq-build: revert "fix `which` detection on Fedora"
This reverts commit fca5ad55d292f8e481406123d0e95b3c85d39733.
Causes problems on MacOS host systems.
Signed-off-by: Paul Spooren <mail@aparcar.org>
| -rw-r--r-- | include/prereq-build.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/prereq-build.mk b/include/prereq-build.mk index 750d334716..9242407b18 100644 --- a/include/prereq-build.mk +++ b/include/prereq-build.mk @@ -186,7 +186,7 @@ $(eval $(call SetupHostCommand,rsync,Please install 'rsync', \ rsync --version </dev/null)) $(eval $(call SetupHostCommand,which,Please install 'which', \ - env which which | grep which)) + which which | grep which)) $(STAGING_DIR_HOST)/bin/mkhash: $(SCRIPT_DIR)/mkhash.c mkdir -p $(dir $@) |