diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2015-06-08 23:46:25 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-06-11 23:59:18 +0100 |
commit | 19d61b9db328ca4d64c56270055c5b0ed4935906 (patch) | |
tree | 560de8cf8a8725ad1fa543dc10381c3893abf321 /meta/recipes-multimedia | |
parent | 1d350d448f1f67200dd00ece7f5ff928ce50c853 (diff) | |
download | poky-19d61b9db328ca4d64c56270055c5b0ed4935906.tar.gz |
libpostproc: pass correct libdir
When MACHINE=qemux86-64 and enable multilib:
ERROR: QA Issue: libpostproc: Files/directories were installed but not shipped in any package:
/usr/lib
/usr/lib/libpostproc.so.52.3.0
/usr/lib/libpostproc.so
/usr/lib/libpostproc.so.52
/usr/lib/.debug
/usr/lib/.debug/libpostproc.so.52.3.0
Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install. [installed-vs-shipped]
Pass the right libdir to configure as otherwise it assumes $prefix/lib
which may be wrong.
(From OE-Core rev: 7cb4ca779a01c3ce935682373fe2a5b02abc91a2)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia')
-rw-r--r-- | meta/recipes-multimedia/libav/libpostproc_git.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/libav/libpostproc_git.bb b/meta/recipes-multimedia/libav/libpostproc_git.bb index 88891db09b..4aaa50f91d 100644 --- a/meta/recipes-multimedia/libav/libpostproc_git.bb +++ b/meta/recipes-multimedia/libav/libpostproc_git.bb | |||
@@ -38,6 +38,7 @@ EXTRA_OECONF = " \ | |||
38 | --extra-cflags="${TARGET_CFLAGS} ${HOST_CC_ARCH}${TOOLCHAIN_OPTIONS}" \ | 38 | --extra-cflags="${TARGET_CFLAGS} ${HOST_CC_ARCH}${TOOLCHAIN_OPTIONS}" \ |
39 | --extra-ldflags="${TARGET_LDFLAGS}" \ | 39 | --extra-ldflags="${TARGET_LDFLAGS}" \ |
40 | --sysroot="${STAGING_DIR_TARGET}" \ | 40 | --sysroot="${STAGING_DIR_TARGET}" \ |
41 | --shlibdir="${libdir}" \ | ||
41 | ${EXTRA_FFCONF} \ | 42 | ${EXTRA_FFCONF} \ |
42 | " | 43 | " |
43 | 44 | ||