diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-10-07 11:32:09 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-10-07 11:32:09 +0000 |
commit | cd91f0efcdd49a6309494b4318027ad1acc12583 (patch) | |
tree | 5507577cbadae727eb02242ddd9b972669c1709b | |
parent | a9afa36cf5ce6412857e79a8659feaf2a169e0d8 (diff) | |
download | upstream-cd91f0efcdd49a6309494b4318027ad1acc12583.tar.gz upstream-cd91f0efcdd49a6309494b4318027ad1acc12583.tar.bz2 upstream-cd91f0efcdd49a6309494b4318027ad1acc12583.zip |
[include] rename PATCH to KPATCH
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23286 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | include/quilt.mk | 4 | ||||
-rw-r--r-- | rules.mk | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/quilt.mk b/include/quilt.mk index 6c4839ba4a..9309fc94b7 100644 --- a/include/quilt.mk +++ b/include/quilt.mk @@ -42,9 +42,9 @@ define PatchDir/Default @if [ -d "$(2)" -a "$$$$(ls $(2) | wc -l)" -gt 0 ]; then \ if [ -s "$(2)/series" ]; then \ $(call filter_series,$(2)/series) | xargs -n1 \ - $(PATCH) "$(1)" "$(2)"; \ + $(KPATCH) "$(1)" "$(2)"; \ else \ - $(PATCH) "$(1)" "$(2)"; \ + $(KPATCH) "$(1)" "$(2)"; \ fi; \ fi endef @@ -160,7 +160,7 @@ HOST_LDFLAGS:=-L$(STAGING_DIR_HOST)/lib TARGET_CC:=$(TARGET_CROSS)gcc TARGET_CXX:=$(if $(CONFIG_INSTALL_LIBSTDCPP),$(TARGET_CROSS)g++,no) -PATCH:=$(SCRIPT_DIR)/patch-kernel.sh +KPATCH:=$(SCRIPT_DIR)/patch-kernel.sh SED:=$(STAGING_DIR_HOST)/bin/sed -i -e CP:=cp -fpR LN:=ln -sf |