mirror of
https://git.yoctoproject.org/poky
synced 2026-05-05 20:27:58 +02:00
at: explicitly depend on bison-native for deterministic builds
Usually bison-native gets into sysroot through indirect dependencies, even with RSS. But when bison-native is not in sysroot, due to different system config, it falls back to using "yacc" instead and fails like this: | yacc -d parsetime.y | make: yacc: Command not found | Makefile:82: recipe for target 'y.tab.c' failed | make: *** [y.tab.c] Error 127 (From OE-Core rev: e6b350c63720ef3ce8e53b73581a02416cb1f7fe) Signed-off-by: Denys Dmytriyenko <denys@ti.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
9ab7895b03
commit
b8952b3ac1
@@ -5,7 +5,7 @@ the system load levels drop to a particular level."
|
||||
SECTION = "base"
|
||||
LICENSE = "GPLv2+"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=4325afd396febcb659c36b49533135d4"
|
||||
DEPENDS = "flex flex-native \
|
||||
DEPENDS = "flex flex-native bison-native \
|
||||
${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}"
|
||||
|
||||
RDEPENDS_${PN} = "${@bb.utils.contains('DISTRO_FEATURES', 'pam', '${PAM_DEPS}', '', d)} \
|
||||
|
||||
Reference in New Issue
Block a user