aboutsummaryrefslogtreecommitdiff
path: root/net/mosquitto/Config.in
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2017-01-17 22:52:04 +0100
committerKarl Palsson <karlp@etactica.com>2017-01-19 10:41:53 +0000
commit8dd6ca99fc55da37921a9ffb9d2802295a0055b8 (patch)
treeeeb2be85386f3e552512d6bc0e1ba9611eccb5fc /net/mosquitto/Config.in
parent75dfd856195200c68bc293ef3379416ed02d7268 (diff)
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 <jo@mein.io>
Diffstat (limited to 'net/mosquitto/Config.in')
-rw-r--r--net/mosquitto/Config.in4
1 files changed, 2 insertions, 2 deletions
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.