fix quilt patch check

SVN-Revision: 9121
This commit is contained in:
Felix Fietkau 2007-10-04 17:58:12 +00:00
parent 7d179076ca
commit 5f87e72dae
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ $(STAMP_PATCHED): $(STAMP_PREPARED)
touch $@
$(STAMP_CHECKED): $(STAMP_PATCHED)
if [ -s "$(PKG_BUILD_DIR)/patches/series" ]; then (cd $(PKG_BUILD_DIR); quilt push -a); fi
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
touch $@
define Build/Quilt