Преглед на файлове

do not ignore exit codes of quilt anymore (by nbd)

SVN-Revision: 14149
Mirko Vogt преди 17 години
родител
ревизия
35e3dbab79
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      include/quilt.mk

+ 1 - 1
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