diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-07-18 07:28:31 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-07-18 07:28:31 +0000 |
commit | 2d1d4476c6a3db5be3a237e0b6e4afc251c940d8 (patch) | |
tree | a9c24d4d1fc7aa2ee649df48ec4ea4b8b8ce6812 /include/quilt.mk | |
parent | 86b2e4df0ea6b3e409a333faadd6faa67fa7675d (diff) | |
download | upstream-2d1d4476c6a3db5be3a237e0b6e4afc251c940d8.tar.gz upstream-2d1d4476c6a3db5be3a237e0b6e4afc251c940d8.tar.bz2 upstream-2d1d4476c6a3db5be3a237e0b6e4afc251c940d8.zip |
fail in .quilt_patched when there were patches that didn't apply
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8024 3c298f89-4303-0410-b956-a3cf2f4a3e73
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 fb5528e884..7714f29119 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; \ ) - -[ -s "$(PKG_BUILD_DIR)/patches/series" ] && (cd $(PKG_BUILD_DIR); quilt push -a) + if [ -s "$(PKG_BUILD_DIR)/patches/series" ]; then (cd $(PKG_BUILD_DIR); quilt push -a); fi touch $@ define Quilt/RefreshDir |