diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-10-04 17:58:12 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-10-04 17:58:12 +0000 |
commit | 5f87e72dae8c79fd047d95a7cf9fca55b71a7299 (patch) | |
tree | dc93a350ff1bb3ce950a1661560678d1f42294d6 | |
parent | 7d179076caa8a190bc768317eaec771de111b567 (diff) | |
download | upstream-5f87e72dae8c79fd047d95a7cf9fca55b71a7299.tar.gz upstream-5f87e72dae8c79fd047d95a7cf9fca55b71a7299.tar.bz2 upstream-5f87e72dae8c79fd047d95a7cf9fca55b71a7299.zip |
fix quilt patch check
SVN-Revision: 9121
-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 daeef9431f..1b191ddcba 100644 --- a/include/quilt.mk +++ b/include/quilt.mk @@ -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 |