summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2016-05-12 20:21:05 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-05-14 23:05:11 +0100
commit36912cd2e45edd84ff414c673d446c94c538516e (patch)
treeacbbd147c8c12263648992730bfe72e6793b59a1
parent3d11229aa14c0a034acc9e1ae040d80eeca9edd1 (diff)
downloadpoky-36912cd2e45edd84ff414c673d446c94c538516e.tar.gz
cmake: enable verbose builds
To help debugging build problems pass VERBOSE=1 to make so that the makefiles print their commands, just like we do with autotools. (From OE-Core rev: 62f95a769ec9e11c72fbf78257badbfb59f1b354) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes/cmake.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/cmake.bbclass b/meta/classes/cmake.bbclass
index 02f313a861..e7883105da 100644
--- a/meta/classes/cmake.bbclass
+++ b/meta/classes/cmake.bbclass
@@ -126,7 +126,7 @@ cmake_do_configure() {
126 126
127cmake_do_compile() { 127cmake_do_compile() {
128 cd ${B} 128 cd ${B}
129 base_do_compile 129 base_do_compile VERBOSE=1
130} 130}
131 131
132cmake_do_install() { 132cmake_do_install() {