Skip to content
Snippets Groups Projects
Commit 1c742fb3 authored by Felix Fietkau's avatar Felix Fietkau
Browse files

build: move the XARGS variable out of the host checks, since a working xargs is built in tools/


Signed-off-by: default avatarFelix Fietkau <nbd@openwrt.org>

SVN-Revision: 37228
parent 4e042e4a
No related branches found
No related tags found
No related merge requests found
......@@ -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" >> $@; \
......
......@@ -207,6 +207,7 @@ KPATCH:=$(SCRIPT_DIR)/patch-kernel.sh
SED:=$(STAGING_DIR_HOST)/bin/sed -i -e
CP:=cp -fpR
LN:=ln -sf
XARGS:=xargs -r
INSTALL_BIN:=install -m0755
INSTALL_DIR:=install -d -m0755
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment