mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 00:56:14 +02:00
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
This commit is contained in:
parent
6d7fed1607
commit
7a11cb572c
@ -126,7 +126,7 @@ define Build/Quilt
|
|||||||
|
|
||||||
$(STAMP_CONFIGURED): $(STAMP_CHECKED) FORCE
|
$(STAMP_CONFIGURED): $(STAMP_CHECKED) FORCE
|
||||||
$(STAMP_CHECKED): $(STAMP_PATCHED)
|
$(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 $$@
|
touch $$@
|
||||||
|
|
||||||
quilt-check: $(STAMP_PREPARED) FORCE
|
quilt-check: $(STAMP_PREPARED) FORCE
|
||||||
|
Loading…
Reference in New Issue
Block a user