mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-24 19:32:03 +02:00
Abstracted find to $(FIND) to allow use of gfind on non-GNU systems.
Signed-off-by: Andy Boyett <agb-openwrt@padded-cell.net> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9659 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
78217eb87a
commit
d3c61e4ff7
@ -30,6 +30,9 @@ $(TMP_DIR)/.host.mk: $(TOPDIR)/include/host.mk
|
|||||||
TAR=`which gtar 2>/dev/null`; \
|
TAR=`which gtar 2>/dev/null`; \
|
||||||
[ -n "$$TAR" -a -x "$$TAR" ] || TAR=`which tar 2>/dev/null`; \
|
[ -n "$$TAR" -a -x "$$TAR" ] || TAR=`which tar 2>/dev/null`; \
|
||||||
echo "TAR:=$$TAR" >> $@; \
|
echo "TAR:=$$TAR" >> $@; \
|
||||||
|
FIND=`which gfind 2>/dev/null`; \
|
||||||
|
[ -n "$$FIND" -a -x "$$FIND" ] || FIND=`which find 2>/dev/null`; \
|
||||||
|
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)' >>$@; \
|
||||||
|
Loading…
Reference in New Issue
Block a user