diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-08-08 20:08:02 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-08-08 20:08:02 +0000 |
commit | 07948cc8ac9d8be3ef3dbfad06044ebd04ef977e (patch) | |
tree | 1b3335306ce08dbdc1c7cc1a0ed243e02e0c6b67 /eclass | |
parent | Fix building with GLIBC 2.10+ wrt #276281. (diff) | |
download | gentoo-2-07948cc8ac9d8be3ef3dbfad06044ebd04ef977e.tar.gz gentoo-2-07948cc8ac9d8be3ef3dbfad06044ebd04ef977e.tar.bz2 gentoo-2-07948cc8ac9d8be3ef3dbfad06044ebd04ef977e.zip |
Print the 'cmake' command for consistency with econf().
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/cmake-utils.eclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass index e6990e1b24c8..f323ac60097f 100644 --- a/eclass/cmake-utils.eclass +++ b/eclass/cmake-utils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/cmake-utils.eclass,v 1.29 2009/06/17 22:39:01 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/cmake-utils.eclass,v 1.30 2009/08/08 20:08:02 arfrever Exp $ # @ECLASS: cmake-utils.eclass # @MAINTAINER: @@ -298,6 +298,7 @@ _EOF_ mkdir -p "${CMAKE_BUILD_DIR}" pushd "${CMAKE_BUILD_DIR}" > /dev/null debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: mycmakeargs is $cmakeargs" + echo cmake ${cmakeargs} "${CMAKE_USE_DIR}" cmake ${cmakeargs} "${CMAKE_USE_DIR}" || die "cmake failed" popd > /dev/null |