diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-05-20 10:39:45 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2012-05-20 10:39:45 +0000 |
commit | b61b2971188ed7bb1025c13ce466b3727fbd7ba1 (patch) | |
tree | b472e4672967fc8c7a1e461a295d253ba538ce2d /eclass/autotools.eclass | |
parent | Version bump. (diff) | |
download | historical-b61b2971188ed7bb1025c13ce466b3727fbd7ba1.tar.gz historical-b61b2971188ed7bb1025c13ce466b3727fbd7ba1.tar.bz2 historical-b61b2971188ed7bb1025c13ce466b3727fbd7ba1.zip |
always depend on automake even when WANT_AUTOMAKE=none #401605
Diffstat (limited to 'eclass/autotools.eclass')
-rw-r--r-- | eclass/autotools.eclass | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass index 550d74520ab3..a36daed56c87 100644 --- a/eclass/autotools.eclass +++ b/eclass/autotools.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.132 2012/05/20 10:32:05 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.133 2012/05/20 10:39:45 vapier Exp $ # @ECLASS: autotools.eclass # @MAINTAINER: @@ -49,9 +49,10 @@ _automake_atom="sys-devel/automake" _autoconf_atom="sys-devel/autoconf" if [[ -n ${WANT_AUTOMAKE} ]]; then case ${WANT_AUTOMAKE} in - none) _automake_atom="" ;; # some packages don't require automake at all - # if you change the "latest" version here, change also autotools_run_tool - # this MUST reflect the latest stable major version for each arch! + # Even if the package doesn't use automake, we still need to depend + # on it because we run aclocal to process m4 macros. This matches + # the autoreconf tool, so this requirement is correct. #401605 + none) ;; latest) # Use SLOT deps if we can. For EAPI=0, we get pretty close. if [[ ${EAPI:-0} != 0 ]] ; then |