X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=blobdiff_plain;f=include%2Fquilt.mk;h=07bab8b440c3e8090ab9a811aeb4dd24a48df38d;hp=c310fd99acd2081a572dc96f1a4be1dd0feeb3e2;hb=5b4a1eee755c34a8f69f26f7370c535750c49005;hpb=5f39d996024285b39326bfd7c3755ea826873857 diff --git a/include/quilt.mk b/include/quilt.mk index c310fd99ac..07bab8b440 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; \ + quilt refresh -p ab --no-index --quiltrc=/dev/null --no-timestamps; \ done; ! quilt next 2>/dev/null >/dev/null $(Quilt/Refresh)