summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/rng-tools/rng-tools_6.6.bb
diff options
context:
space:
mode:
authorHongxu Jia <hongxu.jia@windriver.com>2018-11-10 10:03:19 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-11-14 11:14:40 +0000
commit4c034810e5ca6d8be5af9afc9172ac53cf12bf08 (patch)
treea73cf414af199bbc3fec74625661dbd8e1f5def1 /meta/recipes-support/rng-tools/rng-tools_6.6.bb
parent3eae7a84b270b64410a4886c66629efaf2202329 (diff)
downloadpoky-4c034810e5ca6d8be5af9afc9172ac53cf12bf08.tar.gz
rng-tools: fix typo of unrecognised options: --disable-jitterntropy
- Fix typo of `--disable-jitterntropy' in both of PACKAGECONFIG and configure --help - Enable jitterntropy for musl (From OE-Core rev: c3b96aaa40413d66d8fc4252235e6fa27dd8db53) Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/rng-tools/rng-tools_6.6.bb')
-rw-r--r--meta/recipes-support/rng-tools/rng-tools_6.6.bb5
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/recipes-support/rng-tools/rng-tools_6.6.bb b/meta/recipes-support/rng-tools/rng-tools_6.6.bb
index 033af9909d..4d91216e32 100644
--- a/meta/recipes-support/rng-tools/rng-tools_6.6.bb
+++ b/meta/recipes-support/rng-tools/rng-tools_6.6.bb
@@ -7,6 +7,7 @@ SRC_URI = "git://github.com/nhorman/rng-tools.git \
7 file://0002-Add-argument-to-control-the-libargp-dependency.patch \ 7 file://0002-Add-argument-to-control-the-libargp-dependency.patch \
8 file://underquote.patch \ 8 file://underquote.patch \
9 file://rng-tools-5-fix-textrels-on-PIC-x86.patch \ 9 file://rng-tools-5-fix-textrels-on-PIC-x86.patch \
10 file://0001-configure.ac-fix-typo.patch \
10 file://init \ 11 file://init \
11 file://default \ 12 file://default \
12 file://rngd.service \ 13 file://rngd.service \
@@ -24,10 +25,10 @@ DEPENDS = "curl \
24 " 25 "
25 26
26PACKAGECONFIG ??= "libgcrypt libjitterentropy" 27PACKAGECONFIG ??= "libgcrypt libjitterentropy"
27PACKAGECONFIG_libc-musl = "libargp" 28PACKAGECONFIG_libc-musl = "libargp libjitterentropy"
28PACKAGECONFIG[libargp] = "--with-libargp,--without-libargp,argp-standalone," 29PACKAGECONFIG[libargp] = "--with-libargp,--without-libargp,argp-standalone,"
29PACKAGECONFIG[libgcrypt] = "--with-libgcrypt,--without-libgcrypt,libgcrypt," 30PACKAGECONFIG[libgcrypt] = "--with-libgcrypt,--without-libgcrypt,libgcrypt,"
30PACKAGECONFIG[libjitterentropy] = "--enable-jitterentropy,--disable-jitterntropy,libjitterentropy" 31PACKAGECONFIG[libjitterentropy] = "--enable-jitterentropy,--disable-jitterentropy,libjitterentropy"
31 32
32# Refer autogen.sh in rng-tools 33# Refer autogen.sh in rng-tools
33do_configure_prepend() { 34do_configure_prepend() {