summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Chvatal <scarabeus@gentoo.org>2009-05-27 14:34:33 +0000
committerTomas Chvatal <scarabeus@gentoo.org>2009-05-27 14:34:33 +0000
commitf0d4e2fc78bd2ef22ec4b5518a0680d4ddabcb0f (patch)
tree5831a3da13b5d007e0c618133526011303d14f05 /eclass/cmake-utils.eclass
parentfix bug 270839 (diff)
downloadgentoo-2-f0d4e2fc78bd2ef22ec4b5518a0680d4ddabcb0f.tar.gz
gentoo-2-f0d4e2fc78bd2ef22ec4b5518a0680d4ddabcb0f.tar.bz2
gentoo-2-f0d4e2fc78bd2ef22ec4b5518a0680d4ddabcb0f.zip
Add comment to CMAKE_BUILD_DIR variable. Describing what for it is.
Diffstat (limited to 'eclass/cmake-utils.eclass')
-rw-r--r--eclass/cmake-utils.eclass9
1 files changed, 7 insertions, 2 deletions
diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass
index 3371e41bf8d5..45aa43372f9d 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.26 2009/05/08 10:54:02 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/cmake-utils.eclass,v 1.27 2009/05/27 14:34:33 scarabeus Exp $
# @ECLASS: cmake-utils.eclass
# @MAINTAINER:
@@ -123,7 +123,12 @@ _check_build_dir() {
# By default it uses ${S}.
: ${CMAKE_USE_DIR:=${S}}
- # in/out source build
+ # @ECLASS-VARIABLE: CMAKE_BUILD_DIR
+ # @DESCRIPTION:
+ # Specify the build directory where all cmake processed
+ # files should be located.
+ #
+ # For installing binary doins "${CMAKE_BUILD_DIR}/${PN}"
if [[ -n "${CMAKE_IN_SOURCE_BUILD}" ]]; then
CMAKE_BUILD_DIR="${CMAKE_USE_DIR}"
else