diff options
author | Armin Kuster <akuster808@gmail.com> | 2021-07-29 16:31:12 -0700 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2021-08-01 08:47:08 -0700 |
commit | 11a67b861af74d59ccfd609d6d943e966ccff731 (patch) | |
tree | ce619cf42798050439a4c04ed471ed293f17ede4 /recipes-security/libest | |
parent | d3a484abf81fc196389480df89cf5c82d13e6381 (diff) | |
download | meta-security-11a67b861af74d59ccfd609d6d943e966ccff731.tar.gz |
meta-security: Convert to new override syntax
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'recipes-security/libest')
-rw-r--r-- | recipes-security/libest/libest_3.2.0.bb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/recipes-security/libest/libest_3.2.0.bb b/recipes-security/libest/libest_3.2.0.bb index 5b6dc99..fda2df4 100644 --- a/recipes-security/libest/libest_3.2.0.bb +++ b/recipes-security/libest/libest_3.2.0.bb | |||
@@ -11,17 +11,17 @@ SRC_URI = "git://github.com/cisco/libest;branch=main" | |||
11 | DEPENDS = "openssl" | 11 | DEPENDS = "openssl" |
12 | 12 | ||
13 | #fatal error: execinfo.h: No such file or directory | 13 | #fatal error: execinfo.h: No such file or directory |
14 | DEPENDS_append_libc-musl = " libexecinfo" | 14 | DEPENDS:append:libc-musl = " libexecinfo" |
15 | 15 | ||
16 | inherit autotools-brokensep | 16 | inherit autotools-brokensep |
17 | 17 | ||
18 | EXTRA_OECONF = "--disable-pthreads --with-ssl-dir=${STAGING_LIBDIR}" | 18 | EXTRA_OECONF = "--disable-pthreads --with-ssl-dir=${STAGING_LIBDIR}" |
19 | 19 | ||
20 | CFLAGS += "-fcommon" | 20 | CFLAGS += "-fcommon" |
21 | LDFLAGS_append_libc-musl = " -lexecinfo" | 21 | LDFLAGS:append:libc-musl = " -lexecinfo" |
22 | 22 | ||
23 | S = "${WORKDIR}/git" | 23 | S = "${WORKDIR}/git" |
24 | 24 | ||
25 | PACKAGES = "${PN} ${PN}-dbg ${PN}-dev" | 25 | PACKAGES = "${PN} ${PN}-dbg ${PN}-dev" |
26 | 26 | ||
27 | FILES_${PN} = "${bindir}/* ${libdir}/libest-3.2.0p.so" | 27 | FILES:${PN} = "${bindir}/* ${libdir}/libest-3.2.0p.so" |