diff options
author | mirko <mirko@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-01-22 22:01:39 +0000 |
---|---|---|
committer | mirko <mirko@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-01-22 22:01:39 +0000 |
commit | 7a11cb572c208cca49828eeaf3a23d3988a816e8 (patch) | |
tree | 98f5ba4e6d90beb772dd206abb26b35896aa2155 | |
parent | 6d7fed16078bf2f727aa91621269af4002a7a510 (diff) |
do not ignore exit codes of quilt anymore (by nbd)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14149 3c298f89-4303-0410-b956-a3cf2f4a3e73
-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 d3233d823..c47a9262d 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 |