[oe-commits] [openembedded-core] 11/15: x264: Use updated gnu-config artifacts

git at git.openembedded.org git at git.openembedded.org
Tue Apr 3 10:11:12 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 2624f400af6e51f6f3379f9f119b8f81c75a014b
Author: Khem Raj <raj.khem at gmail.com>
AuthorDate: Sun Apr 1 00:19:43 2018 -0700

    x264: Use updated gnu-config artifacts
    
    It is not using autoconf completely, therefore there
    is no autoreconf happening, so when we depend on latest
    gnu-config changes e.g. new architectures like riscv
    the build does not see them and fails.
    
    Installing these files from native sysroot helps
    
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-multimedia/x264/x264_git.bb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta/recipes-multimedia/x264/x264_git.bb b/meta/recipes-multimedia/x264/x264_git.bb
index a669295..c445d15 100644
--- a/meta/recipes-multimedia/x264/x264_git.bb
+++ b/meta/recipes-multimedia/x264/x264_git.bb
@@ -43,6 +43,8 @@ EXTRA_OECONF = '--prefix=${prefix} \
                '
 
 do_configure() {
+    install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.guess ${S}
+    install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.sub ${S}
     ./configure ${EXTRA_OECONF}
 }
 

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


More information about the Openembedded-commits mailing list