[oe-commits] [openembedded-core] 36/55: kernel.bbclass: explicitly depend on bison-native for deterministic builds

git at git.openembedded.org git at git.openembedded.org
Sat Feb 24 10:38:21 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 05341fbfad393ffde7a4e48cbd2eb83def0b42d0
Author: Denys Dmytriyenko <denys at ti.com>
AuthorDate: Mon Feb 19 18:54:15 2018 -0500

    kernel.bbclass: explicitly depend on bison-native for deterministic builds
    
    Explicitly depend on bison-native for deterministic builds, as it is required
    for the build:
    
    |   HOSTCC  scripts/basic/fixdep
    |   GEN     ./Makefile
    |   HOSTCC  scripts/kconfig/conf.o
    |   YACC    scripts/kconfig/zconf.tab.c
    | /bin/sh: bison: command not found
    | scripts/Makefile.lib:217: recipe for target 'scripts/kconfig/zconf.tab.c' failed
    
    In most cases, this dependency comes indirectly via toolchain dependencies,
    specifically binutils-cross, which pulls bison-native. Different setups,
    such as with external toolchain, would expose this problem, since correct
    dependency is not marked explicitly.
    
    Signed-off-by: Denys Dmytriyenko <denys at ti.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/classes/kernel.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass
index 943938d..321c0a4 100644
--- a/meta/classes/kernel.bbclass
+++ b/meta/classes/kernel.bbclass
@@ -4,7 +4,7 @@ KERNEL_PACKAGE_NAME ??= "kernel"
 KERNEL_DEPLOYSUBDIR ??= "${@ "" if (d.getVar("KERNEL_PACKAGE_NAME") == "kernel") else d.getVar("KERNEL_PACKAGE_NAME") }"
 
 PROVIDES += "${@ "virtual/kernel" if (d.getVar("KERNEL_PACKAGE_NAME") == "kernel") else "" }"
-DEPENDS += "virtual/${TARGET_PREFIX}binutils virtual/${TARGET_PREFIX}gcc kmod-native bc-native lzop-native"
+DEPENDS += "virtual/${TARGET_PREFIX}binutils virtual/${TARGET_PREFIX}gcc kmod-native bc-native lzop-native bison-native"
 PACKAGE_WRITE_DEPS += "depmodwrapper-cross"
 
 do_deploy[depends] += "depmodwrapper-cross:do_populate_sysroot"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list