diff options
author | Lukas Bulwahn <lukas.bulwahn@oss.bmw-carit.de> | 2014-06-26 16:56:22 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-07-21 23:49:09 +0200 |
commit | 7c686636199398420ca4bfefbb574935e38aecdb (patch) | |
tree | 347b051183641b29ca1547fccffe2d6754ff05b9 /meta-oe/recipes-support/libeigen | |
parent | 44344c266c5c375ed939405367bad2486f4599f5 (diff) | |
download | meta-openembedded-7c686636199398420ca4bfefbb574935e38aecdb.tar.gz |
libeigen: remove obsolete setting for default out-of-tree build
Since commit 783fb88f@openembedded-core, out-of-tree builds of
cmake-based recipes are the default, and the variables
OECMAKE_BUILDPATH and OECMAKE_SOURCEPATH were deprecated.
With the commit 2c23d7ab@openembedded-core, the variable
OECMAKE_SOURCEPATH was put back into action, but this causes the
libeigen recipe to fail as OECMAKE_SOURCEPATH is set in the
recipe, but OECMAKE_BUILDPATH is set to the bbclass default.
This commit simply removes both variables from the libeigen recipe
and hence sets the recipe to do a default out-of-tree build.
This resolves the build failure of libeigen with
2c23d7ab@openembedded-core, and furthermore, the adjusted recipe
still works with the cmake.bbclass of 783fb88f@openembedded-core.
The build failure was discovered during the regression testing of
the meta-ros layer. The exact build error message and its
investigation is recorded in issue #276 of the meta-ros issue
tracker at https://github.com/bmwcarit/meta-ros/issues/276.
Signed-off-by: Lukas Bulwahn <lukas.bulwahn@oss.bmw-carit.de>
Tested-by: Ash Charles <ashcharles@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/libeigen')
-rw-r--r-- | meta-oe/recipes-support/libeigen/libeigen_3.2.0.bb | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/meta-oe/recipes-support/libeigen/libeigen_3.2.0.bb b/meta-oe/recipes-support/libeigen/libeigen_3.2.0.bb index 4183f0521..de5186f10 100644 --- a/meta-oe/recipes-support/libeigen/libeigen_3.2.0.bb +++ b/meta-oe/recipes-support/libeigen/libeigen_3.2.0.bb | |||
@@ -13,9 +13,6 @@ S = "${WORKDIR}/eigen-eigen-ffa86ffb5570" | |||
13 | 13 | ||
14 | inherit cmake | 14 | inherit cmake |
15 | 15 | ||
16 | OECMAKE_SOURCEPATH = ".." | ||
17 | OECMAKE_BUILDPATH = "build" | ||
18 | |||
19 | EXTRA_OECMAKE += "-Dpkg_config_libdir=${libdir}" | 16 | EXTRA_OECMAKE += "-Dpkg_config_libdir=${libdir}" |
20 | 17 | ||
21 | FILES_${PN} = "${includedir} ${libdir}" | 18 | FILES_${PN} = "${includedir} ${libdir}" |