X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/d0ddef4be10182314022f491a18d9cde0807a625..59006bd473f95583cf3f1c50b1d43cfbef8a30bf:/include/quilt.mk?ds=sidebyside diff --git a/include/quilt.mk b/include/quilt.mk index 6c4839ba4..a9af2268b 100644 --- a/include/quilt.mk +++ b/include/quilt.mk @@ -39,12 +39,13 @@ define PatchDir/Quilt endef define PatchDir/Default - @if [ -d "$(2)" -a "$$$$(ls $(2) | wc -l)" -gt 0 ]; then \ + @if [ -d "$(2)" ] && [ "$$$$(ls $(2) | wc -l)" -gt 0 ]; then \ + export PATCH="$(PATCH)"; \ 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