diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-06-18 00:11:27 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-06-18 00:11:27 +0000 |
commit | 5a198850d0403e0b3276cad48cc2b58e54b72dff (patch) | |
tree | a20a13f6a667e9ba2b03525a1ff65a35f3b2d438 | |
parent | 61f024c208929e8ec10e4d384430803a856799b4 (diff) | |
download | upstream-5a198850d0403e0b3276cad48cc2b58e54b72dff.tar.gz upstream-5a198850d0403e0b3276cad48cc2b58e54b72dff.tar.bz2 upstream-5a198850d0403e0b3276cad48cc2b58e54b72dff.zip |
make sure quilt starts with the correct patch order in series
SVN-Revision: 7658
-rw-r--r-- | include/quilt.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/quilt.mk b/include/quilt.mk index e02fab0879..47195293e8 100644 --- a/include/quilt.mk +++ b/include/quilt.mk @@ -57,6 +57,10 @@ endef $(STAMP_PATCHED): $(STAMP_PREPARED) @cd $(PKG_BUILD_DIR); quilt pop -a -f >/dev/null 2>/dev/null || true + (\ + 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 touch $@ |