diff options
author | Michał Górny <mgorny@gentoo.org> | 2011-11-27 09:17:35 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2011-11-27 09:17:35 +0000 |
commit | 90e709cedfbafecfd6ae1c2559ff9217aa9f6deb (patch) | |
tree | 67aa46ee86fb5a1bd9110802fae547320b935962 /eclass/autotools-utils.eclass | |
parent | Remove old versions. (diff) | |
download | historical-90e709cedfbafecfd6ae1c2559ff9217aa9f6deb.tar.gz historical-90e709cedfbafecfd6ae1c2559ff9217aa9f6deb.tar.bz2 historical-90e709cedfbafecfd6ae1c2559ff9217aa9f6deb.zip |
Denote that autotools-utils must not be mixed with econf/emake.
Diffstat (limited to 'eclass/autotools-utils.eclass')
-rw-r--r-- | eclass/autotools-utils.eclass | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/eclass/autotools-utils.eclass b/eclass/autotools-utils.eclass index 78057575cc21..16dabbc1c4c9 100644 --- a/eclass/autotools-utils.eclass +++ b/eclass/autotools-utils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.27 2011/11/26 20:43:55 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.28 2011/11/27 09:17:35 mgorny Exp $ # @ECLASS: autotools-utils.eclass # @MAINTAINER: @@ -11,7 +11,11 @@ # autotools-utils.eclass is autotools.eclass(5) and base.eclass(5) wrapper # providing all inherited features along with econf arguments as Bash array, # out of source build with overridable build dir location, static archives -# handling, libtool files removal, enable/disable debug handling. +# handling, libtool files removal. +# +# Please note note that autotools-utils does not support mixing of its phase +# functions with regular econf/emake calls. If necessary, please call +# autotools-utils_src_compile instead of the latter. # # @EXAMPLE: # Typical ebuild using autotools-utils.eclass: |