diff options
author | 2011-01-19 12:44:55 +0000 | |
---|---|---|
committer | 2011-01-19 12:44:55 +0000 | |
commit | b0f1cfc68a08042f11a0659860c4a7208601f02b (patch) | |
tree | e91d1babd74f205c440e0fd6cb9a47bec01ff66f /eclass | |
parent | Do not allow xulrunner 2.0, thanks Logarithmenlord@googlemail.com in bug #351... (diff) | |
download | historical-b0f1cfc68a08042f11a0659860c4a7208601f02b.tar.gz historical-b0f1cfc68a08042f11a0659860c4a7208601f02b.tar.bz2 historical-b0f1cfc68a08042f11a0659860c4a7208601f02b.zip |
Update minimal required version and drop useless argument passing.
Diffstat (limited to '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 df24728d2537..ed657be15b9b 100644 --- a/eclass/cmake-utils.eclass +++ b/eclass/cmake-utils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/cmake-utils.eclass,v 1.63 2011/01/13 19:17:00 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/cmake-utils.eclass,v 1.64 2011/01/19 12:44:55 scarabeus Exp $ # @ECLASS: cmake-utils.eclass # @MAINTAINER: @@ -30,8 +30,8 @@ WANT_CMAKE="${WANT_CMAKE:-always}" # @ECLASS-VARIABLE: CMAKE_MIN_VERSION # @DESCRIPTION: -# Specify the minimum required CMake version. Default is 2.6.2-r1 -CMAKE_MIN_VERSION="${CMAKE_MIN_VERSION:-2.6.2-r1}" +# Specify the minimum required CMake version. Default is 2.8.1 +CMAKE_MIN_VERSION="${CMAKE_MIN_VERSION:-2.8.1}" CMAKEDEPEND="" case ${WANT_CMAKE} in @@ -268,7 +268,7 @@ _modify-cmakelists() { enable_cmake-utils_src_configure() { debug-print-function ${FUNCNAME} "$@" - _check_build_dir init + _check_build_dir # check if CMakeLists.txt exist and if no then die if [[ ! -e ${CMAKE_USE_DIR}/CMakeLists.txt ]] ; then |