X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/23ac60b66ca9d7567696ed47f76a25c4fb4dc6aa..c5bab4ae7e0c07bf2768a9bf668cfe2ed13b1a79:/include/host.mk diff --git a/include/host.mk b/include/host.mk index 4a434711c..8b4ce3d24 100644 --- a/include/host.mk +++ b/include/host.mk @@ -9,6 +9,8 @@ include $(TMP_DIR)/.host.mk export TAR +ifneq ($(__host_inc),1) +__host_inc:=1 $(TMP_DIR)/.host.mk: $(TOPDIR)/include/host.mk @mkdir -p $(TMP_DIR) @( \ @@ -32,3 +34,10 @@ $(TMP_DIR)/.host.mk: $(TOPDIR)/include/host.mk echo "BASH:=$(shell which bash)" >> $@; \ ) +endif + +ifeq ($(HOST_OS),Linux) + XARGS:=xargs -r +else + XARGS:=xargs +endif