export the FIND variable which points to a usable find version
SVN-Revision: 12327
This commit is contained in:
parent
b3b5e54099
commit
08b6c2294f
1 changed files with 4 additions and 4 deletions
|
@ -8,7 +8,7 @@
|
||||||
TMP_DIR ?= $(TOPDIR)/tmp
|
TMP_DIR ?= $(TOPDIR)/tmp
|
||||||
-include $(TMP_DIR)/.host.mk
|
-include $(TMP_DIR)/.host.mk
|
||||||
|
|
||||||
export TAR
|
export TAR FIND
|
||||||
|
|
||||||
ifneq ($(__host_inc),1)
|
ifneq ($(__host_inc),1)
|
||||||
__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`; \
|
[ -n "$$FIND" -a -x "$$FIND" ] || FIND=`which find 2>/dev/null`; \
|
||||||
echo "FIND:=$$FIND" >> $@; \
|
echo "FIND:=$$FIND" >> $@; \
|
||||||
echo "BASH:=$(shell which bash)" >> $@; \
|
echo "BASH:=$(shell which bash)" >> $@; \
|
||||||
if find -L /tmp -maxdepth 0 >/dev/null 2>/dev/null; then \
|
if $$FIND -L /tmp -maxdepth 0 >/dev/null 2>/dev/null; then \
|
||||||
echo 'FIND_L=find -L $$(1)' >>$@; \
|
echo "FIND_L=$$FIND -L \$$(1)" >>$@; \
|
||||||
else \
|
else \
|
||||||
echo 'FIND_L=find $$(1) -follow' >> $@; \
|
echo "FIND_L=$$FIND \$$(1) -follow" >> $@; \
|
||||||
fi; \
|
fi; \
|
||||||
if xargs --help 2>&1 | grep 'gnu.org' >/dev/null; then \
|
if xargs --help 2>&1 | grep 'gnu.org' >/dev/null; then \
|
||||||
echo 'XARGS:=xargs -r' >> $@; \
|
echo 'XARGS:=xargs -r' >> $@; \
|
||||||
|
|
Loading…
Reference in a new issue