From: nbd Date: Wed, 18 Jul 2007 07:28:31 +0000 (+0000) Subject: fail in .quilt_patched when there were patches that didn't apply X-Git-Url: https://git.archive.openwrt.org/?a=commitdiff_plain;h=4e7d27c89015a1ca768e10254b1eb472d3e8021c;p=openwrt.git fail in .quilt_patched when there were patches that didn't apply git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8024 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/include/quilt.mk b/include/quilt.mk index fb5528e884..7714f29119 100644 --- a/include/quilt.mk +++ b/include/quilt.mk @@ -61,7 +61,7 @@ $(STAMP_PATCHED): $(STAMP_PREPARED) cd $(PKG_BUILD_DIR)/patches; \ find * -type f \! -name series | sort > series; \ ) - -[ -s "$(PKG_BUILD_DIR)/patches/series" ] && (cd $(PKG_BUILD_DIR); quilt push -a) + if [ -s "$(PKG_BUILD_DIR)/patches/series" ]; then (cd $(PKG_BUILD_DIR); quilt push -a); fi touch $@ define Quilt/RefreshDir