diff options
author | 2009-12-23 00:32:02 +0000 | |
---|---|---|
committer | 2009-12-23 00:32:02 +0000 | |
commit | 8fc9824613ea1ded38a79d43126caa3dfd4d296e (patch) | |
tree | d3342d453c63e498e6bbacac55263eb0d16ea5e6 /eclass/cmake-utils.eclass | |
parent | Pull in changes from overlay and patch for prefix support (Solaris) (diff) | |
download | historical-8fc9824613ea1ded38a79d43126caa3dfd4d296e.tar.gz historical-8fc9824613ea1ded38a79d43126caa3dfd4d296e.tar.bz2 historical-8fc9824613ea1ded38a79d43126caa3dfd4d296e.zip |
Fixes from kde overlay
Diffstat (limited to 'eclass/cmake-utils.eclass')
-rw-r--r-- | eclass/cmake-utils.eclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass index cd83fcfef690..c3d85fa1bcfb 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.39 2009/12/22 22:52:52 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/cmake-utils.eclass,v 1.40 2009/12/23 00:32:02 abcd Exp $ # @ECLASS: cmake-utils.eclass # @MAINTAINER: @@ -231,7 +231,7 @@ cmake-utils_use_has() { _use_me_now HAVE_ "$@" ; } cmake-utils_use() { _use_me_now "" "$@" ; } # Internal function for modifying hardcoded definitions. -# Removes dangerous definitionts that override Gentoo settings. +# Removes dangerous definitions that override Gentoo settings. _modify-cmakelists() { debug-print-function ${FUNCNAME} "$@" @@ -246,8 +246,8 @@ _modify-cmakelists() { cat >> CMakeLists.txt <<- _EOF_ MESSAGE(STATUS "<<< Gentoo configuration >>> - Build type: ${CMAKE_BUILD_TYPE} - Install path: ${CMAKE_INSTALL_PREFIX}\n") + Build type: \${CMAKE_BUILD_TYPE} + Install path: \${CMAKE_INSTALL_PREFIX}\n") _EOF_ } |