X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/1854938e6ee49ce15d9d11e555f1a12a2e46a6fd..23ab7d24d719e32a6eff8d6537c0c4ed74c5edbb:/include/quilt.mk diff --git a/include/quilt.mk b/include/quilt.mk index 58ced886c..07bab8b44 100644 --- a/include/quilt.mk +++ b/include/quilt.mk @@ -67,7 +67,7 @@ define Build/Patch/Default endef define Kernel/Patch/Default - $(if $(QUILT),rm -rf $(PKG_BUILD_DIR)/patches; mkdir -p $(PKG_BUILD_DIR)/patches) + rm -rf $(PKG_BUILD_DIR)/patches; mkdir -p $(PKG_BUILD_DIR)/patches if [ -d $(GENERIC_FILES_DIR) ]; then $(CP) $(GENERIC_FILES_DIR)/* $(LINUX_DIR)/; fi if [ -d $(FILES_DIR) ]; then \ $(CP) $(FILES_DIR)/* $(LINUX_DIR)/; \ @@ -148,7 +148,7 @@ define Build/Quilt refresh: quilt-check @cd $(PKG_BUILD_DIR); quilt pop -a -f >/dev/null 2>/dev/null @cd $(PKG_BUILD_DIR); while quilt next 2>/dev/null >/dev/null && quilt push; do \ - quilt refresh --quiltrc=/dev/null --no-timestamps; \ + quilt refresh -p ab --no-index --quiltrc=/dev/null --no-timestamps; \ done; ! quilt next 2>/dev/null >/dev/null $(Quilt/Refresh)