aboutsummaryrefslogtreecommitdiffstats
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
commit6232c138af89a6f6b28350ec1fbee39b0b5747a4 (patch)
tree9ec34b345812849e80fc2c4a040cd284b2174551 /include/host.mk
parent0545721438582e2c99fa838937c06ec436d76282 (diff)
downloadmaster-187ad058-6232c138af89a6f6b28350ec1fbee39b0b5747a4.tar.gz
master-187ad058-6232c138af89a6f6b28350ec1fbee39b0b5747a4.tar.bz2
master-187ad058-6232c138af89a6f6b28350ec1fbee39b0b5747a4.zip
simplify handling of zcat - always use gzip -dc. zcat and gzcat are either broken or nonexistant on some systems
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7096 3c298f89-4303-0410-b956-a3cf2f4a3e73
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)" >> $@; \
)