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 | 1c742fb388d8c6f94969c73fe403e442d0022c1a (patch) | |
tree | 78303ca92ce22c9b7abdaad912701aeafcb94115 /include/host.mk | |
parent | 4e042e4a8488e904c5cc6436e6b6bf4dc9b6a9db (diff) | |
download | upstream-1c742fb388d8c6f94969c73fe403e442d0022c1a.tar.gz upstream-1c742fb388d8c6f94969c73fe403e442d0022c1a.tar.bz2 upstream-1c742fb388d8c6f94969c73fe403e442d0022c1a.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>
SVN-Revision: 37228
Diffstat (limited to 'include/host.mk')
-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" >> $@; \ |