diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-07-10 15:11:29 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-07-10 15:11:29 +0000 |
commit | 920880de049b9f43bcf586fa185351757b945be0 (patch) | |
tree | 7150dd0d6cb35b9daad4a570b99f2e996fe4c4c3 /include | |
parent | e91e245a2d6a546f4b0719ec6a3f0c23bf2cbe48 (diff) | |
download | upstream-920880de049b9f43bcf586fa185351757b945be0.tar.gz upstream-920880de049b9f43bcf586fa185351757b945be0.tar.bz2 upstream-920880de049b9f43bcf586fa185351757b945be0.zip |
build: move the XARGS variable out of the host checks, since a working xargs is built in tools/
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@37228 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include')
-rw-r--r-- | include/host.mk | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/host.mk b/include/host.mk index b44c1bf1ac..000fb18984 100644 --- a/include/host.mk +++ b/include/host.mk @@ -54,11 +54,6 @@ $(TMP_DIR)/.host.mk: $(TOPDIR)/include/host.mk else \ echo "FIND_L=$$FIND \$$(1) -follow" >> $@; \ fi; \ - if xargs --help 2>&1 | grep 'gnu.org' >/dev/null; then \ - echo 'XARGS:=xargs -r' >> $@; \ - else \ - echo 'XARGS:=xargs' >> $@; \ - fi; \ PATCH=`which gpatch 2>/dev/null`; \ [ -n "$$PATCH" -a -x "$$PATCH" ] || PATCH=`which patch 2>/dev/null`; \ echo "PATCH:=$$PATCH" >> $@; \ |