From: Yann E. MORIN Date: Sun, 26 Jan 2014 17:37:02 +0000 (+0100) Subject: package/pkg-cmake: disable colouring the output X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5d46789550173eaf1b355b3fd1d7b9b38ec204d2;p=buildroot.git 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" Cc: Samuel Martin Signed-off-by: Peter Korsgaard --- diff --git a/package/pkg-cmake.mk b/package/pkg-cmake.mk index aedd1fcc47..13be5570ca 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) \ )