From 3cf0250da20f230a3edbe585bd16fdd19576851e Mon Sep 17 00:00:00 2001
From: Jo-Philipp Wich <jow@openwrt.org>
Date: Thu, 7 Oct 2010 11:33:12 +0000
Subject: [PATCH] host.mk: introduce PATCH which refers to either gpatch or
 patch

SVN-Revision: 23287
---
 include/host.mk | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/include/host.mk b/include/host.mk
index f3e47c8723..9b8a32b672 100644
--- a/include/host.mk
+++ b/include/host.mk
@@ -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
-- 
GitLab