diff options
author | Mirko Vogt <mirko@openwrt.org> | 2009-01-22 22:01:39 +0000 |
---|---|---|
committer | Mirko Vogt <mirko@openwrt.org> | 2009-01-22 22:01:39 +0000 |
commit | 35e3dbab79fad811ada527578660a50e4f3a0b0d (patch) | |
tree | 3692f13f3dcc7b9a3e8a3f358a2d4dd9eabd140e | |
parent | 4337de497757ad101c871935a9559171ce4c4a52 (diff) | |
download | mtk-20170518-35e3dbab79fad811ada527578660a50e4f3a0b0d.zip mtk-20170518-35e3dbab79fad811ada527578660a50e4f3a0b0d.tar.gz mtk-20170518-35e3dbab79fad811ada527578660a50e4f3a0b0d.tar.bz2 |
do not ignore exit codes of quilt anymore (by nbd)
SVN-Revision: 14149
-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 d3233d8..c47a926 100644 --- a/include/quilt.mk +++ b/include/quilt.mk @@ -126,7 +126,7 @@ define Build/Quilt $(STAMP_CONFIGURED): $(STAMP_CHECKED) FORCE $(STAMP_CHECKED): $(STAMP_PATCHED) - if [ -s "$(PKG_BUILD_DIR)/patches/series" ]; then (cd $(PKG_BUILD_DIR); quilt next >/dev/null 2>&1 && quilt push -a || quilt top >/dev/null 2>&1); fi + if [ -s "$(PKG_BUILD_DIR)/patches/series" ]; then (cd $(PKG_BUILD_DIR); if quilt next >/dev/null 2>&1; then quilt push -a; else quilt top; fi >/dev/null 2>&1); fi touch $$@ quilt-check: $(STAMP_PREPARED) FORCE |