On Fri, Jan 11, 2013 at 02:41:32PM +0200, Vasilis Tsiligiannis wrote: > Στις Παρ 04 Ιαν 2013 14:56:40 γράψατε: > > Hello Karl, > > > -PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_ > > VERSION) +PKG_MD5SUM:=ab51f64eb3f0041402073aa7865f3ec4 > > Why did you remove the package variant suffix?
You're right, that's wrong. I thought it was part of some code I have in my local package for building from the development tree, but it's for the ssl / no-ssl variants. Corrected patch below.... (Removing the gdb3 build flags I think is still the right thing to do, it shouldn't have ever been included) Sincerely, Karl Palsson From 52aa88602601350456b816ddd877452c42532e59 Mon Sep 17 00:00:00 2001 From: Karl Palsson <[email protected]> Date: Fri, 4 Jan 2013 11:32:16 +0000 Subject: [PATCH] [packages] mosquitto: Upgrade MQTT tools to v1.1 This is a bugfix and feature release. Full release notes at http://mosquitto.org/2012/12/version-1-1-released/ This also removes some unnecessary flags included by mistake in an earlier update. As before, I volunteer to maintain this package. Signed-off-by: Karl Palsson <[email protected]> --- net/mosquitto/Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/net/mosquitto/Makefile b/net/mosquitto/Makefile index 627e992..7a295c2 100644 --- a/net/mosquitto/Makefile +++ b/net/mosquitto/Makefile @@ -9,19 +9,18 @@ include $(TOPDIR)/rules.mk PKG_NAME:=mosquitto -PKG_VERSION:=1.0.3 +PKG_VERSION:=1.1 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://mosquitto.org/files/source/ -PKG_MD5SUM:=9c9e06c57fcca80d76068c53ad140186 +PKG_MD5SUM:=ab51f64eb3f0041402073aa7865f3ec4 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION) include $(INCLUDE_DIR)/package.mk MAKE_FLAGS+=WITH_MEMORY_TRACKING=no -TARGET_CFLAGS+=-ggdb3 define Package/$(PKG_NAME)/default SECTION:=net -- 1.7.11.7 _______________________________________________ openwrt-devel mailing list [email protected] https://lists.openwrt.org/mailman/listinfo/openwrt-devel
