X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=include%2Fhost.mk;h=9d0c64372a3075634d95914971b05a4c3cacc986;hb=4169a2e834f174440e0547b3460ddce4bb627b5e;hp=00eb1f55aafef0a1072e0dfa07b4071eaee5aa86;hpb=40ab15892dbf9b2a3f2a9f7737de374c94733925;p=librecmc%2Flibrecmc.git diff --git a/include/host.mk b/include/host.mk index 00eb1f55aa..9d0c64372a 100644 --- a/include/host.mk +++ b/include/host.mk @@ -6,9 +6,11 @@ # TMP_DIR ?= $(TOPDIR)/tmp --include $(TMP_DIR)/.host.mk +ifeq ($(if $(TARGET_BUILD),,$(DUMP)),) + -include $(TMP_DIR)/.host.mk +endif -export TAR +export TAR FIND ifneq ($(__host_inc),1) __host_inc:=1 @@ -34,17 +36,16 @@ $(TMP_DIR)/.host.mk: $(TOPDIR)/include/host.mk [ -n "$$FIND" -a -x "$$FIND" ] || FIND=`which find 2>/dev/null`; \ echo "FIND:=$$FIND" >> $@; \ echo "BASH:=$(shell which bash)" >> $@; \ - if find -L /tmp -maxdepth 0 >/dev/null 2>/dev/null; then \ - echo 'FIND_L=find -L $$(1)' >>$@; \ + if $$FIND -L /tmp -maxdepth 0 >/dev/null 2>/dev/null; then \ + echo "FIND_L=$$FIND -L \$$(1)" >>$@; \ + 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 'FIND_L=find $$(1) -follow' >> $@; \ + echo 'XARGS:=xargs' >> $@; \ fi; \ ) endif - -ifeq ($(HOST_OS),Linux) - XARGS:=xargs -r -else - XARGS:=xargs -endif