diff options
author | André Draszik <andre.draszik@jci.com> | 2018-05-22 12:46:13 +0100 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2018-05-26 21:10:55 -0700 |
commit | 3ba4e21bb8e8f8b4d9f32a53103d67ae1fa46139 (patch) | |
tree | 0bf1af47046591e78fa82396fd5a8987274d2a03 /meta-oe/recipes-connectivity | |
parent | f860a7daa49a2ae294fd197fa7c067725111d06f (diff) | |
download | meta-openembedded-3ba4e21bb8e8f8b4d9f32a53103d67ae1fa46139.tar.gz |
krb5: DEPENDS on bison-native
bison-native is required for the build:
| yacc getdate.y
| make[2]: yacc: Command not found
| make[2]: *** [<builtin>: getdate.c] Error 127
In most cases, this dependency comes indirectly via toolchain
dependencies, specifically binutils-cross, which pulls
bison-native.
Different setups, such as with external toolchains, or an
upcoming change to OE-core for avoiding exactly this
unnoticed dependency expose this problem, since the correct
dependency is not marked explicitly.
Signed-off-by: André Draszik <andre.draszik@jci.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-connectivity')
-rw-r--r-- | meta-oe/recipes-connectivity/krb5/krb5_1.16.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-connectivity/krb5/krb5_1.16.bb b/meta-oe/recipes-connectivity/krb5/krb5_1.16.bb index f95240f54..6eedd2a22 100644 --- a/meta-oe/recipes-connectivity/krb5/krb5_1.16.bb +++ b/meta-oe/recipes-connectivity/krb5/krb5_1.16.bb | |||
@@ -15,7 +15,7 @@ HOMEPAGE = "http://web.mit.edu/Kerberos/" | |||
15 | SECTION = "console/network" | 15 | SECTION = "console/network" |
16 | LICENSE = "MIT" | 16 | LICENSE = "MIT" |
17 | LIC_FILES_CHKSUM = "file://${S}/../NOTICE;md5=59b8da652f07186b44782a8454574f30" | 17 | LIC_FILES_CHKSUM = "file://${S}/../NOTICE;md5=59b8da652f07186b44782a8454574f30" |
18 | DEPENDS = "ncurses util-linux e2fsprogs e2fsprogs-native openssl" | 18 | DEPENDS = "bison-native ncurses util-linux e2fsprogs e2fsprogs-native openssl" |
19 | 19 | ||
20 | inherit autotools-brokensep binconfig perlnative systemd update-rc.d | 20 | inherit autotools-brokensep binconfig perlnative systemd update-rc.d |
21 | 21 | ||