X-Git-Url: http://git.openwrt.org/?p=project%2Fluci.git;a=blobdiff_plain;f=contrib%2Fuci%2FMakefile;h=b0ea8c0b6094e48b323c57b4dcab3b0c283a7dbb;hp=14dc36759707520574f4ecae135d76d6310ae826;hb=c4ef5ff259967852a00a4444642f50aaef050c67;hpb=59a84011287e1215b46e957b6db4d877d639a67f diff --git a/contrib/uci/Makefile b/contrib/uci/Makefile index 14dc367597..b0ea8c0b60 100644 --- a/contrib/uci/Makefile +++ b/contrib/uci/Makefile @@ -1,16 +1,16 @@ include ../../build/config.mk include ../../build/gccconfig.mk -UCI_VERSION = 0.7.1 -UCI_SITE = http://mirror2.openwrt.org/sources -UCI_DIR = uci-$(UCI_VERSION) -UCI_FILE = $(UCI_DIR).tar.gz -UCI_URL = $(UCI_SITE)/$(UCI_FILE) -#UCI_GITREV = c79cc497e7b0caa0f9f6a2c978fa9a5f0f097463 -#UCI_SITE = http://nbd.name -#UCI_DIR = uci.git -#UCI_FILE = uci-$(UCI_VERSION)$(UCI_APPEND).tar.gz -#UCI_URL = $(UCI_SITE)/gitweb.cgi?p=uci.git;a=snapshot;h=$(UCI_GITREV) +UCI_VERSION = 0.8.0 +#UCI_SITE = http://mirror2.openwrt.org/sources +#UCI_DIR = uci-$(UCI_VERSION) +#UCI_FILE = $(UCI_DIR).tar.gz +#UCI_URL = $(UCI_SITE)/$(UCI_FILE) +UCI_GITREV = aa3ab8012bfbf793d2884c08ea924545a04e9544 +UCI_SITE = http://nbd.name +UCI_DIR = uci.git +UCI_FILE = uci-$(UCI_VERSION)$(UCI_APPEND).tar.gz +UCI_URL = $(UCI_SITE)/gitweb.cgi?p=uci.git;a=snapshot;h=$(UCI_GITREV) UCI_PATCHDIR = patches all: compile @@ -20,12 +20,13 @@ include ../../build/module.mk $(UCI_FILE): wget -O $@ "$(UCI_URL)" || rm -f $@ -$(UCI_PATCHDIR)/series: - (cd $(UCI_PATCHDIR); ls *.patch | sort > series) - $(UCI_DIR)/.prepared: $(UCI_FILE) rm -rf $(UCI_DIR) tar xvfz $(UCI_FILE) + (cd $(UCI_PATCHDIR); ls *.patch | sort > series) || true + [ -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