Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-dev
ChangeLog again.
On 05/20/2012 01:39 PM, Mike Frysinger (vapier) wrote:
> vapier 12/05/20 10:39:45
>
> Modified: autotools.eclass
> Log:
> always depend on automake even when WANT_AUTOMAKE=none #401605
>
> Revision Changes Path
> 1.133 eclass/autotools.eclass
>
> file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/autotools.eclass?rev=1.133&view=markup
> plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/autotools.eclass?rev=1.133&content-type=text/plain
> diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/autotools.eclass?r1=1.132&r2=1.133
>
> Index: autotools.eclass
> ===================================================================
> RCS file: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v
> retrieving revision 1.132
> retrieving revision 1.133
> diff -u -r1.132 -r1.133
> --- autotools.eclass 20 May 2012 10:32:05 -0000 1.132
> +++ autotools.eclass 20 May 2012 10:39:45 -0000 1.133
> @@ -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 @@
> _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
>
>
>
>
|
|