summaryrefslogtreecommitdiffstats
path: root/package/pkg-cmake.mk
diff options
context:
space:
mode:
authorYann E. MORIN <yann.morin.1998@free.fr>2014-01-26 18:37:02 +0100
committerPeter Korsgaard <peter@korsgaard.com>2014-01-28 23:04:05 +0100
commit5d46789550173eaf1b355b3fd1d7b9b38ec204d2 (patch)
treed7ceec0cab9ed912d3cb59eb998ca53c1c5d1aec /package/pkg-cmake.mk
parent984524fda1f8260e258421f6676d522591f025da (diff)
package/pkg-cmake: disable colouring the output
cmake is the only build-system we support that does colour its output, Also, since parallel builds generates intermixed output lines, it makes for ugly-looking output. Just disable cmake colouring globally. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/pkg-cmake.mk')
-rw-r--r--package/pkg-cmake.mk1
1 files changed, 1 insertions, 0 deletions
diff --git a/package/pkg-cmake.mk b/package/pkg-cmake.mk
index aedd1fcc4..13be5570c 100644
--- a/package/pkg-cmake.mk
+++ b/package/pkg-cmake.mk
@@ -64,6 +64,7 @@ define $(2)_CONFIGURE_CMDS
$$($$(PKG)_CONF_ENV) $(HOST_DIR)/usr/bin/cmake $$($$(PKG)_SRCDIR) \
-DCMAKE_TOOLCHAIN_FILE="$$(HOST_DIR)/usr/share/buildroot/toolchainfile.cmake" \
-DCMAKE_INSTALL_PREFIX="/usr" \
+ -DCMAKE_COLOR_MAKEFILE=OFF \
-DBUILD_SHARED_LIBS=$(if $(BR2_PREFER_STATIC_LIB),OFF,ON) \
$$($$(PKG)_CONF_OPT) \
)