diff options
author | Peter Denison <openwrt@marshadder.org> | 2007-07-17 20:05:08 +0000 |
---|---|---|
committer | Peter Denison <openwrt@marshadder.org> | 2007-07-17 20:05:08 +0000 |
commit | b375d32a48a04876e17925a56dff5c8c30df98ac (patch) | |
tree | c94685c66f6add00bda18994874cfa53c2452fce /include/quilt.mk | |
parent | 6e655daf2121fd15dd5a52e054f7383cc351f01f (diff) | |
download | upstream-b375d32a48a04876e17925a56dff5c8c30df98ac.tar.gz upstream-b375d32a48a04876e17925a56dff5c8c30df98ac.tar.bz2 upstream-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.mk | 2 |
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 |