summaryrefslogtreecommitdiffstats
path: root/meta/classes/cmake.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2010-07-21 21:43:38 +0100
committerRichard Purdie <rpurdie@linux.intel.com>2010-07-21 21:43:38 +0100
commitcb249ed2f0791d021593209cd000baaa9629fcf1 (patch)
tree340c22909aea1c59bf75f5893c2689da1f378d5d /meta/classes/cmake.bbclass
parent0e0830109cea38de17a589ec2fd3a9184f489087 (diff)
downloadpoky-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.bbclass2
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
4inherit autotools 4inherit autotools
5 5
6EXTRA_OECMAKE ?= ""
7
6cmake_do_configure() { 8cmake_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}