]> code.ossystems Code Review - openembedded-core.git/commitdiff
x264: Use updated gnu-config artifacts
authorKhem Raj <raj.khem@gmail.com>
Sun, 1 Apr 2018 07:19:43 +0000 (00:19 -0700)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 3 Apr 2018 10:02:22 +0000 (11:02 +0100)
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@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-multimedia/x264/x264_git.bb

index a669295044d9af1218bdbc68382b46177d78f719..c445d15e6940b5a54f4ef275ee7a17601cba239b 100644 (file)
@@ -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}
 }