diff options
author | Olivia Yin <hong-hua.yin@freescale.com> | 2013-05-07 04:29:03 +0000 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2013-05-10 11:02:37 +0200 |
commit | eb040205f38eb0e2c28ccc7b4f64e9541cc82cc0 (patch) | |
tree | 64dd6f3e3331d8b0da2944a1ea02477cde1b9f2e /meta-oe/recipes-devtools | |
parent | 1eb3e91030cee6d5765a1924b605fb689573c6ad (diff) | |
download | meta-openembedded-eb040205f38eb0e2c28ccc7b4f64e9541cc82cc0.tar.gz |
yajl: pass the cmake variable LIB_SUFFIX to handle installation on 64-bit systems
WARNING: QA Issue: yajl: Files/directories were installed but not shipped
/usr/lib
/usr/lib/libyajl.so.2
/usr/lib/libyajl.so
/usr/lib/libyajl_s.a
/usr/lib/libyajl.so.2.0.4
/usr/lib/.debug
/usr/lib/.debug/libyajl.so.2.0.4
NOTE: for 64-bit systems where lib64 is used you can pass the cmake
variable LIB_SUFFIX to cause installation into the system's 'lib64'
directory.
Signed-off-by: Olivia Yin <hong-hua.yin@freescale.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-devtools')
-rw-r--r-- | meta-oe/recipes-devtools/yajl/yajl_2.0.4.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/yajl/yajl_2.0.4.bb b/meta-oe/recipes-devtools/yajl/yajl_2.0.4.bb index 735952076..9d67e2d9f 100644 --- a/meta-oe/recipes-devtools/yajl/yajl_2.0.4.bb +++ b/meta-oe/recipes-devtools/yajl/yajl_2.0.4.bb | |||
@@ -1,6 +1,7 @@ | |||
1 | DESCRIPTION = "Yet Another JSON Library - A Portable JSON parsing and serialization library in ANSI C" | 1 | DESCRIPTION = "Yet Another JSON Library - A Portable JSON parsing and serialization library in ANSI C" |
2 | LICENSE = "MIT" | 2 | LICENSE = "MIT" |
3 | LIC_FILES_CHKSUM = "file://COPYING;md5=74f541bd9a2b6c8e5d0714bcdc327f32" | 3 | LIC_FILES_CHKSUM = "file://COPYING;md5=74f541bd9a2b6c8e5d0714bcdc327f32" |
4 | PR = "r1" | ||
4 | 5 | ||
5 | SRCREV = "fee1ebef9fa7dc0e9f5a23f37123b19b68c796ff" | 6 | SRCREV = "fee1ebef9fa7dc0e9f5a23f37123b19b68c796ff" |
6 | SRC_URI = "git://github.com/lloyd/yajl.git" | 7 | SRC_URI = "git://github.com/lloyd/yajl.git" |
@@ -8,3 +9,5 @@ SRC_URI = "git://github.com/lloyd/yajl.git" | |||
8 | S = "${WORKDIR}/git" | 9 | S = "${WORKDIR}/git" |
9 | 10 | ||
10 | inherit cmake lib_package | 11 | inherit cmake lib_package |
12 | |||
13 | EXTRA_OECMAKE = "-DLIB_SUFFIX=${@d.getVar('baselib', True).replace('lib', '')}" | ||