diff options
author | Khem Raj <raj.khem@gmail.com> | 2018-04-01 00:19:43 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-04-03 23:53:20 +0100 |
commit | 5b85332a0f3e3049b249d0fff27396da3f370b15 (patch) | |
tree | 0d719b62693c5172ee8f9c734a4469e42fda94e2 | |
parent | 44bd3b684a7baefa222038af9db9cb1f922bb245 (diff) | |
download | poky-5b85332a0f3e3049b249d0fff27396da3f370b15.tar.gz |
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
(From OE-Core rev: 2624f400af6e51f6f3379f9f119b8f81c75a014b)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-multimedia/x264/x264_git.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/x264/x264_git.bb b/meta/recipes-multimedia/x264/x264_git.bb index a669295044..c445d15e69 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} \ | |||
43 | ' | 43 | ' |
44 | 44 | ||
45 | do_configure() { | 45 | do_configure() { |
46 | install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.guess ${S} | ||
47 | install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.sub ${S} | ||
46 | ./configure ${EXTRA_OECONF} | 48 | ./configure ${EXTRA_OECONF} |
47 | } | 49 | } |
48 | 50 | ||