1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-30 02:16:21 +03:00

if quilt failed whilst patching, no output was shown

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14178 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
blogic 2009-01-25 17:28:11 +00:00
parent a25a3260c5
commit 3f7ca42970

View File

@ -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); if quilt next >/dev/null 2>&1; then quilt push -a; else quilt top; fi >/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 >/dev/null 2>&1; fi); fi
touch $$@
quilt-check: $(STAMP_PREPARED) FORCE