X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=include%2Fhost.mk;h=833aa83a66fb3c75204c6fe74160e4a59d3fbc15;hb=93f0b2377f4c571b41a02a4ea812d2e09985c796;hp=423ca1661082b53cfd6ce8daf0dd56640a4d884d;hpb=6c26dacd2ceccc533f8a05f9ec4a600793ec06e9;p=openwrt-10.03%2F.git diff --git a/include/host.mk b/include/host.mk index 423ca1661..833aa83a6 100644 --- a/include/host.mk +++ b/include/host.mk @@ -28,10 +28,13 @@ $(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)" >> $@; \ ) endif + +ifeq ($(HOST_OS),Linux) + XARGS:=xargs -r +else + XARGS:=xargs +endif