summaryrefslogtreecommitdiff
path: root/include/host.mk
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2008-08-17 09:04:48 +0000
committerFelix Fietkau <nbd@openwrt.org>2008-08-17 09:04:48 +0000
commit08b6c2294f8adeac31191894a95203cde3142fe7 (patch)
tree3c5bfd0022e5aea31d1713584a43634cf41f36bd /include/host.mk
parentb3b5e540995ba786f3938f53b096aa29529dba47 (diff)
downloadmtk-20170518-08b6c2294f8adeac31191894a95203cde3142fe7.zip
mtk-20170518-08b6c2294f8adeac31191894a95203cde3142fe7.tar.gz
mtk-20170518-08b6c2294f8adeac31191894a95203cde3142fe7.tar.bz2
export the FIND variable which points to a usable find version
SVN-Revision: 12327
Diffstat (limited to 'include/host.mk')
-rw-r--r--include/host.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/host.mk b/include/host.mk
index 9d40ec4..b6a5824 100644
--- a/include/host.mk
+++ b/include/host.mk
@@ -8,7 +8,7 @@
TMP_DIR ?= $(TOPDIR)/tmp
-include $(TMP_DIR)/.host.mk
-export TAR
+export TAR FIND
ifneq ($(__host_inc),1)
__host_inc:=1
@@ -34,10 +34,10 @@ $(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' >> $@; \
+ echo "FIND_L=$$FIND \$$(1) -follow" >> $@; \
fi; \
if xargs --help 2>&1 | grep 'gnu.org' >/dev/null; then \
echo 'XARGS:=xargs -r' >> $@; \