summaryrefslogtreecommitdiffstats
path: root/include/quilt.mk
diff options
context:
space:
mode:
authorPeter Denison <openwrt@marshadder.org>2007-07-17 20:05:08 +0000
committerPeter Denison <openwrt@marshadder.org>2007-07-17 20:05:08 +0000
commitb375d32a48a04876e17925a56dff5c8c30df98ac (patch)
treec94685c66f6add00bda18994874cfa53c2452fce /include/quilt.mk
parent6e655daf2121fd15dd5a52e054f7383cc351f01f (diff)
downloadmaster-31e0f0ae-b375d32a48a04876e17925a56dff5c8c30df98ac.tar.gz
master-31e0f0ae-b375d32a48a04876e17925a56dff5c8c30df98ac.tar.bz2
master-31e0f0ae-b375d32a48a04876e17925a56dff5c8c30df98ac.zip
cope with QUILT=1 when there are no patches
SVN-Revision: 8022
Diffstat (limited to 'include/quilt.mk')
-rw-r--r--include/quilt.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/quilt.mk b/include/quilt.mk
index 2e7941eaed..fb5528e884 100644
--- a/include/quilt.mk
+++ b/include/quilt.mk
@@ -61,7 +61,7 @@ $(STAMP_PATCHED): $(STAMP_PREPARED)
cd $(PKG_BUILD_DIR)/patches; \
find * -type f \! -name series | sort > series; \
)
- [ -f "$(PKG_BUILD_DIR)/patches/series" ] && cd $(PKG_BUILD_DIR); quilt push -a
+ -[ -s "$(PKG_BUILD_DIR)/patches/series" ] && (cd $(PKG_BUILD_DIR); quilt push -a)
touch $@
define Quilt/RefreshDir