diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-21 21:43:38 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-21 21:43:38 +0100 |
commit | cb249ed2f0791d021593209cd000baaa9629fcf1 (patch) | |
tree | 340c22909aea1c59bf75f5893c2689da1f378d5d /meta/classes/cmake.bbclass | |
parent | 0e0830109cea38de17a589ec2fd3a9184f489087 (diff) | |
download | poky-cb249ed2f0791d021593209cd000baaa9629fcf1.tar.gz |
cmake.bbclass: Make sure EXTRA_OECMAKE has a sane default
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/classes/cmake.bbclass')
-rw-r--r-- | meta/classes/cmake.bbclass | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/cmake.bbclass b/meta/classes/cmake.bbclass index b972bd0037..019999165f 100644 --- a/meta/classes/cmake.bbclass +++ b/meta/classes/cmake.bbclass | |||
@@ -3,6 +3,8 @@ DEPENDS += " cmake-native " | |||
3 | # We want the staging and installing functions from autotools | 3 | # We want the staging and installing functions from autotools |
4 | inherit autotools | 4 | inherit autotools |
5 | 5 | ||
6 | EXTRA_OECMAKE ?= "" | ||
7 | |||
6 | cmake_do_configure() { | 8 | cmake_do_configure() { |
7 | cmake . -DCMAKE_INSTALL_PREFIX:PATH=${prefix} -Wno-dev \ | 9 | cmake . -DCMAKE_INSTALL_PREFIX:PATH=${prefix} -Wno-dev \ |
8 | -DCMAKE_FIND_ROOT_PATH=${STAGING_DIR_HOST} ${EXTRA_OECMAKE} | 10 | -DCMAKE_FIND_ROOT_PATH=${STAGING_DIR_HOST} ${EXTRA_OECMAKE} |