diff options
author | Karl Palsson <karlp@etactica.com> | 2017-12-11 10:55:08 +0000 |
---|---|---|
committer | Karl Palsson <karlp@etactica.com> | 2017-12-11 10:55:08 +0000 |
commit | 46879b2b65457e772e8c5e701b79b2e0ba05e17c (patch) | |
tree | 4501fc742d3e997d2e0c2a2db22c08cb9225cb01 | |
parent | 3531c3a6c009130426d92f29d2123addf9669b9f (diff) |
net/mosquitto: depend on virtual package instead of select
Can't use DEPENDS:= +libname when libname is now a virtual package.
Switch to plain DEPENDS:= libname.
Fixes Github issue 4751
Signed-off-by: Karl Palsson <karlp@etactica.com>
-rw-r--r-- | net/mosquitto/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/mosquitto/Makefile b/net/mosquitto/Makefile index 3756d7e0d..e89dc524b 100644 --- a/net/mosquitto/Makefile +++ b/net/mosquitto/Makefile @@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=mosquitto PKG_VERSION:=1.4.14 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_LICENSE:=BSD-3-Clause PKG_LICENSE_FILES:=LICENSE.txt @@ -144,7 +144,7 @@ endef define Package/libmosquittopp SECTION:=libs CATEGORY:=Libraries - DEPENDS:=+libmosquitto-ssl +libstdcpp + DEPENDS:=libmosquitto +libstdcpp TITLE:= mosquitto - client c++ library endef |