aboutsummaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-connectivity/mosquitto
diff options
context:
space:
mode:
authorMartin Kelly <mkelly@xevo.com>2020-06-05 14:16:00 -0700
committerKhem Raj <raj.khem@gmail.com>2020-06-08 13:58:03 -0700
commit58d1f552a068f66d62328737f935285f2378fdf6 (patch)
treee6d0efdc69d9fdf3aac0f255ff6cfbe96b41d269 /meta-networking/recipes-connectivity/mosquitto
parent2f650652dc1349af1f20395cf79fbe06de419f0d (diff)
downloadmeta-openembedded-contrib-58d1f552a068f66d62328737f935285f2378fdf6.tar.gz
mosquitto: typo fix
The "ssl" PACKAGECONFIG setting contains WITH_EC_OFF instead of WITH_EC=OFF, resulting in a build break when "ssl" is not set. Signed-off-by: Martin Kelly <mkelly@xevo.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking/recipes-connectivity/mosquitto')
-rw-r--r--meta-networking/recipes-connectivity/mosquitto/mosquitto_1.6.10.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-networking/recipes-connectivity/mosquitto/mosquitto_1.6.10.bb b/meta-networking/recipes-connectivity/mosquitto/mosquitto_1.6.10.bb
index 3961866da6..9f6080336a 100644
--- a/meta-networking/recipes-connectivity/mosquitto/mosquitto_1.6.10.bb
+++ b/meta-networking/recipes-connectivity/mosquitto/mosquitto_1.6.10.bb
@@ -30,7 +30,7 @@ PACKAGECONFIG ??= "ssl dlt websockets \
"
PACKAGECONFIG[dns-srv] = "-DWITH_SRV=ON,-DWITH_SRV=OFF,c-ares"
-PACKAGECONFIG[ssl] = "-DWITH_TLS=ON -DWITH_TLS_PSK=ON -DWITH_EC=ON,-DWITH_TLS=OFF -DWITH_TLS_PSK=OFF -DWITH_EC_OFF,openssl"
+PACKAGECONFIG[ssl] = "-DWITH_TLS=ON -DWITH_TLS_PSK=ON -DWITH_EC=ON,-DWITH_TLS=OFF -DWITH_TLS_PSK=OFF -DWITH_EC=OFF,openssl"
PACKAGECONFIG[systemd] = "-DWITH_SYSTEMD=ON,-DWITH_SYSTEMD=OFF,systemd"
PACKAGECONFIG[websockets] = "-DWITH_WEBSOCKETS=ON,-DWITH_WEBSOCKETS=OFF,libwebsockets"
PACKAGECONFIG[dlt] = "-DWITH_DLT=ON,-DWITH_DLT=OFF,dlt-daemon"