diff options
author | Joe Hershberger <joe.hershberger@ni.com> | 2021-04-16 16:36:20 -0500 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2021-04-17 07:43:11 -0700 |
commit | 90c04acced601f61db2516698b4d4df540a4cc3d (patch) | |
tree | d91c6fcee4cd14bcbeb7aada4dea597c399e45d7 /meta-networking/recipes-support | |
parent | c126dcd1f91236d7effdb64df7fd9a3e2029543d (diff) | |
download | meta-openembedded-90c04acced601f61db2516698b4d4df540a4cc3d.tar.gz |
strongswan: Make PACKAGECONFIG a default value
Change from a weak default to a default in the definition of the PACKAGECONFIG.
In https://github.com/flihp/meta-measured/blob/master/networking-layer/recipes-support/strongswan/strongswan_5.%25.bbappend the PACKAGECONFIG is appended to, so if the definition is weak here, the variable will be empty when the bbappend attempts to add to it.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking/recipes-support')
-rw-r--r-- | meta-networking/recipes-support/strongswan/strongswan_5.9.2.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-networking/recipes-support/strongswan/strongswan_5.9.2.bb b/meta-networking/recipes-support/strongswan/strongswan_5.9.2.bb index dd50fba3d..c178b4cda 100644 --- a/meta-networking/recipes-support/strongswan/strongswan_5.9.2.bb +++ b/meta-networking/recipes-support/strongswan/strongswan_5.9.2.bb | |||
@@ -24,7 +24,7 @@ EXTRA_OECONF = " \ | |||
24 | 24 | ||
25 | EXTRA_OECONF += "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', '--with-systemdsystemunitdir=${systemd_unitdir}/system/', '--without-systemdsystemunitdir', d)}" | 25 | EXTRA_OECONF += "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', '--with-systemdsystemunitdir=${systemd_unitdir}/system/', '--without-systemdsystemunitdir', d)}" |
26 | 26 | ||
27 | PACKAGECONFIG ??= "curl gmp openssl sqlite3 swanctl \ | 27 | PACKAGECONFIG ?= "curl gmp openssl sqlite3 swanctl \ |
28 | ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'systemd-charon', 'charon', d)} \ | 28 | ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'systemd-charon', 'charon', d)} \ |
29 | " | 29 | " |
30 | PACKAGECONFIG[aesni] = "--enable-aesni,--disable-aesni,,${PN}-plugin-aesni" | 30 | PACKAGECONFIG[aesni] = "--enable-aesni,--disable-aesni,,${PN}-plugin-aesni" |