diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-07-18 07:28:31 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-07-18 07:28:31 +0000 |
commit | 5175e0e45c4f1c6b537dad400c06247594f5a719 (patch) | |
tree | 30e465a4d49e301fd8f0fad2128c1df1053c186e /include | |
parent | fd5595ed5cfa9a218dbdefc528072d4a549e7059 (diff) | |
download | mtk-20170518-5175e0e45c4f1c6b537dad400c06247594f5a719.zip mtk-20170518-5175e0e45c4f1c6b537dad400c06247594f5a719.tar.gz mtk-20170518-5175e0e45c4f1c6b537dad400c06247594f5a719.tar.bz2 |
fail in .quilt_patched when there were patches that didn't apply
SVN-Revision: 8024
Diffstat (limited to 'include')
-rw-r--r-- | include/quilt.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/quilt.mk b/include/quilt.mk index fb5528e..7714f29 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 |