From 8dd6ca99fc55da37921a9ffb9d2802295a0055b8 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Tue, 17 Jan 2017 22:52:04 +0100 Subject: mosquitto: fix provides <=> package name conflicts The virtual package declared by PROVIDES must not have the same name as the variant declaring it, otherwise buildroot will fail with errors like: cp: '.../pkginfo/mosquitto.provides' and '.../pkginfo/mosquitto.provides' are the same file In order to fix the above error, rename the existing "mosquitto" and "libmosquitto" packages into "mosquitto-ssl" and "libmosquitto-ssl" respectively. Also substitute use of $(PKG_NAME) with literal "mosquitto" in Package/* defines to improve readability of the Makefile. Signed-off-by: Jo-Philipp Wich --- net/mosquitto/Config.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'net/mosquitto/Config.in') diff --git a/net/mosquitto/Config.in b/net/mosquitto/Config.in index 9b169c58e..4599736fc 100644 --- a/net/mosquitto/Config.in +++ b/net/mosquitto/Config.in @@ -1,13 +1,13 @@ config MOSQUITTO_LWS bool "libwebsockets support" - depends on PACKAGE_mosquitto + depends on PACKAGE_mosquitto-ssl default y help Includes websockets support in the broker, via libwebsockets config MOSQUITTO_PASSWD bool "Include mosquitto_passwd utility" - depends on PACKAGE_mosquitto + depends on PACKAGE_mosquitto-ssl default y help mosquitto_passwd is a tool for managing password files for mosquitto. -- cgit v1.2.3