summaryrefslogtreecommitdiffstats
path: root/include/host.mk
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2007-05-05 10:35:12 +0000
committerFelix Fietkau <nbd@openwrt.org>2007-05-05 10:35:12 +0000
commit341b6afd554369bcd700dd505210955d521e9ee9 (patch)
tree3c90b41d2f46e17d92a5a9487741d76a30b04719 /include/host.mk
parent90237dd18c8792fd9c08a637623c011c8734c900 (diff)
downloadmaster-31e0f0ae-341b6afd554369bcd700dd505210955d521e9ee9.tar.gz
master-31e0f0ae-341b6afd554369bcd700dd505210955d521e9ee9.tar.bz2
master-31e0f0ae-341b6afd554369bcd700dd505210955d521e9ee9.zip
simplify handling of zcat - always use gzip -dc. zcat and gzcat are either broken or nonexistant on some systems
SVN-Revision: 7096
Diffstat (limited to 'include/host.mk')
-rw-r--r--include/host.mk3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/host.mk b/include/host.mk
index 8b4ce3d24b..833aa83a66 100644
--- a/include/host.mk
+++ b/include/host.mk
@@ -28,9 +28,6 @@ $(TMP_DIR)/.host.mk: $(TOPDIR)/include/host.mk
TAR=`which gtar 2>/dev/null`; \
[ -n "$$TAR" -a -x "$$TAR" ] || TAR=`which tar 2>/dev/null`; \
echo "TAR:=$$TAR" >> $@; \
- ZCAT=`which gzcat 2>/dev/null`; \
- [ -n "$$ZCAT" -a -x "$$ZCAT" ] || ZCAT=`which zcat 2>/dev/null`; \
- echo "ZCAT:=$$ZCAT" >> $@; \
echo "BASH:=$(shell which bash)" >> $@; \
)