From: Steven Barth Date: Mon, 26 Oct 2009 13:33:44 +0000 (+0000) Subject: UCI contrib patch handling X-Git-Tag: 0.10.0~1073 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=9bb9cc378bd91e5983936326260316cd6c4332a9;p=oweals%2Fluci.git UCI contrib patch handling --- diff --git a/contrib/uci/Makefile b/contrib/uci/Makefile index 19625aa72..04aa38b3a 100644 --- a/contrib/uci/Makefile +++ b/contrib/uci/Makefile @@ -23,9 +23,12 @@ $(UCI_FILE): $(UCI_PATCHDIR)/series: (cd $(UCI_PATCHDIR); ls *.patch | sort > series) -$(UCI_DIR)/.prepared: $(UCI_FILE) +$(UCI_DIR)/.prepared: $(UCI_PATCHDIR)/series $(UCI_FILE) rm -rf $(UCI_DIR) tar xvfz $(UCI_FILE) + [ -f "$(UCI_PATCHDIR)/series" ] && while read patch; do \ + patch -d $(UCI_DIR) -p1 < $(UCI_PATCHDIR)/$$patch; \ + done < $(UCI_PATCHDIR)/series || true touch $@ compile: $(UCI_DIR)/.prepared