[oe-commits] [openembedded-core] 07/12: make-mod-scripts: Depends on bison-native

git at git.openembedded.org git at git.openembedded.org
Thu Jun 20 23:39:03 UTC 2019


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

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

commit 4301d533512669834282a6ba43ae8e266a79fe22
Author: Robert Yang <liezhi.yang at windriver.com>
AuthorDate: Thu Jun 20 16:15:24 2019 +0800

    make-mod-scripts: Depends on bison-native
    
    Fixed do_configure error when use linux-dummy:
    PREFERRED_PROVIDER_virtual/kernel = "linux-dummy"
    
    /bin/sh: bison: command not found
    
    Build make-mod-scripts doesn't make sense when use linux-dummy, but it breaks
    "bitbake world", so add bison-native to DEPENDS to fix the problem.
    
    Signed-off-by: Robert Yang <liezhi.yang at windriver.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-kernel/make-mod-scripts/make-mod-scripts_1.0.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-kernel/make-mod-scripts/make-mod-scripts_1.0.bb b/meta/recipes-kernel/make-mod-scripts/make-mod-scripts_1.0.bb
index 97c58c5..460e05a 100644
--- a/meta/recipes-kernel/make-mod-scripts/make-mod-scripts_1.0.bb
+++ b/meta/recipes-kernel/make-mod-scripts/make-mod-scripts_1.0.bb
@@ -12,7 +12,7 @@ S = "${WORKDIR}"
 do_configure[depends] += "virtual/kernel:do_shared_workdir openssl-native:do_populate_sysroot"
 do_compile[depends] += "virtual/kernel:do_compile_kernelmodules"
 
-DEPENDS += "bc-native"
+DEPENDS += "bc-native bison-native"
 
 EXTRA_OEMAKE = " HOSTCC="${BUILD_CC} ${BUILD_CFLAGS} ${BUILD_LDFLAGS}" HOSTCPP="${BUILD_CPP}""
 

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


More information about the Openembedded-commits mailing list