diff options
author | Kai Kang <kai.kang@windriver.com> | 2013-11-25 16:17:07 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-09 11:04:11 +0000 |
commit | 26e4693667be85e9e0d4d2d7a599fd91e0ae4d6c (patch) | |
tree | e8e65a9766bed8d0340d56cb5c3cd9918ad4a4ab | |
parent | 575612402a3d7f1583b6570a5de7894677abc9c6 (diff) | |
download | poky-26e4693667be85e9e0d4d2d7a599fd91e0ae4d6c.tar.gz |
x264: install libraries to right directory when enable multilib
x264 use [EPREFIX/lib] as default libdir. When multlib is enabled that
is not right. Packages depends on x264 such as libav configure fails
that can't find library x264.
Pass the right libdir to configure script to fix it.
(From OE-Core master rev: d1deb07d158cf27bce2ee95e2f02b4fd1d00fe21)
(From OE-Core rev: baa97fc4baf4c87bb850b88a55144395b5c7e11e)
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-multimedia/x264/x264_git.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/x264/x264_git.bb b/meta/recipes-multimedia/x264/x264_git.bb index 295818ae98..406df30e64 100644 --- a/meta/recipes-multimedia/x264/x264_git.bb +++ b/meta/recipes-multimedia/x264/x264_git.bb | |||
@@ -25,6 +25,7 @@ X264_DISABLE_ASM_armv5 = "--disable-asm" | |||
25 | 25 | ||
26 | EXTRA_OECONF = '--prefix=${prefix} \ | 26 | EXTRA_OECONF = '--prefix=${prefix} \ |
27 | --host=${HOST_SYS} \ | 27 | --host=${HOST_SYS} \ |
28 | --libdir=${libdir} \ | ||
28 | --cross-prefix=${TARGET_PREFIX} \ | 29 | --cross-prefix=${TARGET_PREFIX} \ |
29 | --sysroot=${STAGING_DIR_TARGET} \ | 30 | --sysroot=${STAGING_DIR_TARGET} \ |
30 | --enable-shared \ | 31 | --enable-shared \ |