host.mk: introduce PATCH which refers to either gpatch or patch
SVN-Revision: 23287
This commit is contained in:
parent
d3f412f4ec
commit
3cf0250da2
1 changed files with 3 additions and 0 deletions
|
@ -59,6 +59,9 @@ $(TMP_DIR)/.host.mk: $(TOPDIR)/include/host.mk
|
|||
else \
|
||||
echo 'XARGS:=xargs' >> $@; \
|
||||
fi; \
|
||||
PATCH=`which gpatch 2>/dev/null`; \
|
||||
[ -n "$$PATCH" -a -x "$$PATCH" ] || PATCH=`which patch 2>/dev/null`; \
|
||||
echo "PATCH:=$$PATCH" >> $@; \
|
||||
)
|
||||
|
||||
endif
|
||||
|
|
Loading…
Reference in a new issue