cmake.bbclass: style fix for CMAKE_FIND_ROOT_PATH
authorHenning Heinold <heinold@inf.fu-berlin.de>
Wed, 2 Dec 2009 21:57:08 +0000 (22:57 +0100)
committerHenning Heinold <heinold@inf.fu-berlin.de>
Wed, 2 Dec 2009 22:10:53 +0000 (23:10 +0100)
* this fixes the uninitalize message in CMakeCache.txt

classes/cmake.bbclass

index d0a1844..f21c4d6 100644 (file)
@@ -20,7 +20,7 @@ cmake_do_configure() {
 
   cmake ${OECMAKE_SOURCEPATH} \
     -DCMAKE_INSTALL_PREFIX:PATH=${prefix} \
-    -DCMAKE_FIND_ROOT_PATH=${STAGING_DIR_HOST} \
+    -DCMAKE_FIND_ROOT_PATH:PATH=${STAGING_DIR_HOST} \
     ${EXTRA_OECMAKE} \
     -Wno-dev
 }