From: Felix Fietkau Date: Mon, 14 Sep 2009 10:40:04 +0000 (+0000) Subject: build prereq: look for tar under the name "gnutar" as well X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=7809381becb60059fd60d03fefe09528b905c95f build prereq: look for tar under the name "gnutar" as well SVN-Revision: 17575 --- diff --git a/include/host.mk b/include/host.mk index 9d0c64372a..b93ab8d536 100644 --- a/include/host.mk +++ b/include/host.mk @@ -30,6 +30,7 @@ $(TMP_DIR)/.host.mk: $(TOPDIR)/include/host.mk echo "HOST_ARCH:=$$HOST_ARCH" >> $@; \ echo "GNU_HOST_NAME:=$$GNU_HOST_NAME" >> $@; \ TAR=`which gtar 2>/dev/null`; \ + [ -n "$$TAR" -a -x "$$TAR" ] || TAR=`which gnutar 2>/dev/null`; \ [ -n "$$TAR" -a -x "$$TAR" ] || TAR=`which tar 2>/dev/null`; \ echo "TAR:=$$TAR" >> $@; \ FIND=`which gfind 2>/dev/null`; \