summaryrefslogtreecommitdiff
path: root/eclass
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
commit2fc70d9041f02bb9449c8643dc42ef2d7c47c4b1 (patch)
tree67ce9ef0df4a005e9fcfd99246a31d6708ec4e75 /eclass
parentfix bug 270839 (diff)
downloadhistorical-2fc70d9041f02bb9449c8643dc42ef2d7c47c4b1.tar.gz
historical-2fc70d9041f02bb9449c8643dc42ef2d7c47c4b1.tar.bz2
historical-2fc70d9041f02bb9449c8643dc42ef2d7c47c4b1.zip
Add comment to CMAKE_BUILD_DIR variable. Describing what for it is.
Diffstat (limited to '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