diff options
author | Yu Ke <ke.yu@intel.com> | 2011-07-13 16:57:39 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-13 12:14:20 +0100 |
commit | 4e01f730bf1840d43ae7f95bbf51d85d7d030493 (patch) | |
tree | 2e41e1deff1c14d67b352f8e58399ecfb1331bdc /meta/recipes-extended/sat-solver | |
parent | c3a8e964a5706640ce0df8148b4934d20b72425e (diff) | |
download | poky-4e01f730bf1840d43ae7f95bbf51d85d7d030493.tar.gz |
sat-solver: fix for non /usr/lib libdir case
when libdir set to non /usr/lib like /usr/lib64, there is do_configure error:
"
-- Libraries will be installed in /usr/lib
CMake Error at /home/kyu3/sdb/lib64/tmp/sysroots/x86_64-linux/usr/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake:91 (MESSAGE):
Please install 'check' and 'check-devel' packages (missing: CHECK_LIBRARY)
Call Stack (most recent call first):
/home/kyu3/sdb/lib64/tmp/sysroots/x86_64-linux/usr/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake:252 (_FPHSA_FAILURE_MESSAGE)
cmake/modules/FindCheck.cmake:17 (FIND_PACKAGE_HANDLE_STANDARD_ARGS)
CMakeLists.txt:35 (FIND_PACKAGE)
-- Configuring incomplete, errors occurred!
"
The reason is that cmake did not search /usr/lib64 for libcheck, thus report error
add ${libdir} to the CMAKE_SYSTEM_LIBRARY_PATH can fix this issue.
(From OE-Core rev: f4de87ce30a37bb2f09855d442b34d153ada8c0e)
Signed-off-by: Yu Ke <ke.yu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/sat-solver')
-rw-r--r-- | meta/recipes-extended/sat-solver/sat-solver_git.bb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meta/recipes-extended/sat-solver/sat-solver_git.bb b/meta/recipes-extended/sat-solver/sat-solver_git.bb index c608bb7cc2..9b212dbf03 100644 --- a/meta/recipes-extended/sat-solver/sat-solver_git.bb +++ b/meta/recipes-extended/sat-solver/sat-solver_git.bb | |||
@@ -8,7 +8,7 @@ DEPENDS = "libcheck rpm zlib expat db" | |||
8 | 8 | ||
9 | SRCREV = "0a7378d5f482f477a01cf1690d76871ab8bdcc32" | 9 | SRCREV = "0a7378d5f482f477a01cf1690d76871ab8bdcc32" |
10 | PV = "0.0-git${SRCPV}" | 10 | PV = "0.0-git${SRCPV}" |
11 | PR = "r10" | 11 | PR = "r11" |
12 | 12 | ||
13 | PARALLEL_MAKE="" | 13 | PARALLEL_MAKE="" |
14 | 14 | ||
@@ -23,7 +23,9 @@ SRC_URI = "git://gitorious.org/opensuse/sat-solver.git;protocol=git \ | |||
23 | 23 | ||
24 | S = "${WORKDIR}/git" | 24 | S = "${WORKDIR}/git" |
25 | 25 | ||
26 | EXTRA_OECMAKE += "-DLIB=lib -DRPM5=RPM5 -DOE_CORE=OE_CORE" | 26 | EXTRA_OECMAKE += "-DRPM5=RPM5 -DOE_CORE=OE_CORE" |
27 | |||
28 | EXTRA_OECMAKE += " -DLIB=${@os.path.basename('${libdir}')}" | ||
27 | 29 | ||
28 | inherit cmake pkgconfig | 30 | inherit cmake pkgconfig |
29 | 31 | ||