diff options
author | Felix Fietkau <nbd@openwrt.org> | 2008-02-04 21:08:12 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2008-02-04 21:08:12 +0000 |
commit | 82de134ec75bd0ddd95a28f4ee8af015111b3c97 (patch) | |
tree | 1b6cdc3ca48423b195bcc993adda1e06f845aaeb | |
parent | 50a35d2b6d4b9014afc4d59bba9f0ef671a70339 (diff) | |
download | upstream-82de134ec75bd0ddd95a28f4ee8af015111b3c97.tar.gz upstream-82de134ec75bd0ddd95a28f4ee8af015111b3c97.tar.bz2 upstream-82de134ec75bd0ddd95a28f4ee8af015111b3c97.zip |
update uci to 0.1.1 - accepts options without value or with an empty value as valid
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10381 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/uci/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/package/uci/Makefile b/package/uci/Makefile index 616f46fa46..cc73ccb81e 100644 --- a/package/uci/Makefile +++ b/package/uci/Makefile @@ -9,12 +9,14 @@ include $(TOPDIR)/rules.mk PKG_NAME:=uci -PKG_VERSION:=0.1 +PKG_VERSION:=0.1.1 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://downloads.openwrt.org/sources -PKG_MD5SUM:=f6340dce09f5f1552c4e03be98e64265 +PKG_MD5SUM:=b26905c6fa0704e57944da33339f9216 + +LIBVERSION=0.1 include $(INCLUDE_DIR)/package.mk @@ -49,7 +51,7 @@ define Build/Compile $(TARGET_CONFIGURE_OPTS) \ COPTS="$(TARGET_CFLAGS)" \ DEBUG="$(DEBUG)" \ - VERSION="$(PKG_VERSION)" \ + VERSION="$(LIBVERSION)" \ OS="Linux" endef |