From: Ross Burton Date: Fri, 16 Nov 2012 17:16:07 +0000 (+0000) Subject: cmake.bbclass: use DEPENDS_prepend instead of += for cmake-native X-Git-Tag: yocto-4.0~35064 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2b35539d96325d8e687451543d4f52f1a07bf1c6;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git cmake.bbclass: use DEPENDS_prepend instead of += for cmake-native Otherwise when a recipe using DEPENDS=, the cmake-native dependency disappears. Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- diff --git a/meta/classes/cmake.bbclass b/meta/classes/cmake.bbclass index eda45ddd141..54d45194d59 100644 --- a/meta/classes/cmake.bbclass +++ b/meta/classes/cmake.bbclass @@ -1,4 +1,4 @@ -DEPENDS += " cmake-native " +DEPENDS_prepend = "cmake-native " # We need to unset CCACHE otherwise cmake gets too confused CCACHE = ""