diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2021-01-11 18:45:06 +0100 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2021-01-11 19:33:26 +0100 |
commit | 2112ca4ff186293c004711633d5a5145f4e418d1 (patch) | |
tree | cb811662e1ab9b87d85d1d23c43c5e04b8be3c59 /eclass | |
parent | media-libs/libsdl2: Call eautoreconf with AT_NOEAUTOHEADER="yes" (diff) | |
download | gentoo-2112ca4ff186293c004711633d5a5145f4e418d1.tar.gz gentoo-2112ca4ff186293c004711633d5a5145f4e418d1.tar.bz2 gentoo-2112ca4ff186293c004711633d5a5145f4e418d1.zip |
autotools.eclass: Updated _LATEST_AUTOMAKE variable
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/19034
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/autotools.eclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass index b1d365401999..6e3d6a79b139 100644 --- a/eclass/autotools.eclass +++ b/eclass/autotools.eclass @@ -54,6 +54,8 @@ inherit libtool # CONSTANT! # The latest major unstable and stable version/slot of automake available # on each arch. +# Only add unstable version if it is in a different slot than latest stable +# version. # List latest unstable version first to boost testing adoption rate because # most package manager dependency resolver will pick the first suitable # version. @@ -65,7 +67,7 @@ inherit libtool # Do NOT change this variable in your ebuilds! # If you want to force a newer minor version, you can specify the correct # WANT value by using a colon: <PV>:<WANT_AUTOMAKE> -_LATEST_AUTOMAKE=( 1.16.1:1.16 1.15.1:1.15 ) +_LATEST_AUTOMAKE=( 1.16.2-r1:1.16 ) _automake_atom="sys-devel/automake" _autoconf_atom="sys-devel/autoconf" |