summaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-devtools
diff options
context:
space:
mode:
authorAlex Kiernan <alex.kiernan@gmail.com>2022-09-01 09:30:31 +0100
committerKhem Raj <raj.khem@gmail.com>2022-09-03 12:20:15 -0700
commit3589aa5debbf59e940588939dd913130e4cfd4cd (patch)
tree67368d98980255ecfef0a554025ee6754a3c1800 /meta-networking/recipes-devtools
parent26af1e567341502b51f4d762434eaedff8673d2e (diff)
downloadmeta-openembedded-3589aa5debbf59e940588939dd913130e4cfd4cd.tar.gz
libcoap: Fix gnutls/openssl/mbedtls PACKAGECONFIG conflicts
These were missing a comma so were being added as RRECOMMENDS. Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking/recipes-devtools')
-rw-r--r--meta-networking/recipes-devtools/libcoap/libcoap_4.3.0.bb6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta-networking/recipes-devtools/libcoap/libcoap_4.3.0.bb b/meta-networking/recipes-devtools/libcoap/libcoap_4.3.0.bb
index aba81d126a..4b467d212f 100644
--- a/meta-networking/recipes-devtools/libcoap/libcoap_4.3.0.bb
+++ b/meta-networking/recipes-devtools/libcoap/libcoap_4.3.0.bb
@@ -23,10 +23,10 @@ PACKAGECONFIG ?= "\
23 ${@bb.utils.contains('PTEST_ENABLED', '1', 'tests', '', d)} \ 23 ${@bb.utils.contains('PTEST_ENABLED', '1', 'tests', '', d)} \
24" 24"
25PACKAGECONFIG[async] = "--enable-async,--disable-async" 25PACKAGECONFIG[async] = "--enable-async,--disable-async"
26PACKAGECONFIG[gnutls] = "--with-gnutls,--without-gnutls,gnutls,,openssl mbedtls" 26PACKAGECONFIG[gnutls] = "--with-gnutls,--without-gnutls,gnutls,,,openssl mbedtls"
27PACKAGECONFIG[manpages] = "--enable-documentation --enable-doxygen --enable-manpages,--disable-documentation,asciidoc-native doxygen-native graphviz-native" 27PACKAGECONFIG[manpages] = "--enable-documentation --enable-doxygen --enable-manpages,--disable-documentation,asciidoc-native doxygen-native graphviz-native"
28PACKAGECONFIG[mbedtls] = "--with-mbedtls,--without-mbedtls,mbedtls,,gnutls openssl" 28PACKAGECONFIG[mbedtls] = "--with-mbedtls,--without-mbedtls,mbedtls,,,gnutls openssl"
29PACKAGECONFIG[openssl] = "--with-openssl,--without-openssl,openssl,,gnutls mbedtls" 29PACKAGECONFIG[openssl] = "--with-openssl,--without-openssl,openssl,,,gnutls mbedtls"
30PACKAGECONFIG[small-stack] = "--enable-small-stack,--disable-small-stack" 30PACKAGECONFIG[small-stack] = "--enable-small-stack,--disable-small-stack"
31PACKAGECONFIG[tcp] = "--enable-tcp,--disable-tcp" 31PACKAGECONFIG[tcp] = "--enable-tcp,--disable-tcp"
32PACKAGECONFIG[tests] = "--enable-tests,--disable-tests,cunit" 32PACKAGECONFIG[tests] = "--enable-tests,--disable-tests,cunit"