summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2014-02-18 03:57:36 +0000
committerMike Frysinger <vapier@gentoo.org>2014-02-18 03:57:36 +0000
commit06900b5ec0610bca59fea0e8ee7d91c67c572b58 (patch)
tree19ecc7aa4a6709ff836b288f45af25aca6e4a651 /eclass/autotools.eclass
parentadding keywords (diff)
downloadhistorical-06900b5ec0610bca59fea0e8ee7d91c67c572b58.tar.gz
historical-06900b5ec0610bca59fea0e8ee7d91c67c572b58.tar.bz2
historical-06900b5ec0610bca59fea0e8ee7d91c67c572b58.zip
eautomake: run with --force-missing with newer versions so we regen bundled files #133489
Diffstat (limited to 'eclass/autotools.eclass')
-rw-r--r--eclass/autotools.eclass23
1 files changed, 16 insertions, 7 deletions
diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass
index a81b6e22760d..2b6fe415c99e 100644
--- a/eclass/autotools.eclass
+++ b/eclass/autotools.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.159 2013/12/31 16:53:05 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.160 2014/02/18 03:57:36 vapier Exp $
# @ECLASS: autotools.eclass
# @MAINTAINER:
@@ -342,7 +342,7 @@ eautoconf() {
# @DESCRIPTION:
# Runs automake.
eautomake() {
- local extra_opts
+ local extra_opts=()
local makefile_name
# Run automake if:
@@ -352,6 +352,10 @@ eautomake() {
[[ -f ${makefile_name} ]] && break
done
+ _automake_version() {
+ automake --version 2>/dev/null | sed -n -e '1{s:.*(GNU automake) ::p;q}'
+ }
+
if [[ -z ${makefile_name} ]] ; then
_at_uses_automake || return 0
@@ -359,8 +363,7 @@ eautomake() {
local used_automake
local installed_automake
- installed_automake=$(WANT_AUTOMAKE= automake --version | head -n 1 | \
- sed -e 's:.*(GNU automake) ::')
+ installed_automake=$(WANT_AUTOMAKE= _automake_version)
used_automake=$(head -n 1 < ${makefile_name%.am}.in | \
sed -e 's:.*by automake \(.*\) from .*:\1:')
@@ -373,10 +376,16 @@ eautomake() {
fi
[[ -f INSTALL && -f AUTHORS && -f ChangeLog && -f NEWS && -f README ]] \
- || extra_opts="${extra_opts} --foreign"
+ || extra_opts+=( --foreign )
+
+ # Older versions of automake do not support --force-missing. But we want
+ # to use this whenever possible to update random bundled files #133489.
+ case $(_automake_version) in
+ 1.4|1.4[.-]*) ;;
+ *) extra_opts+=( --force-missing ) ;;
+ esac
- # --force-missing seems not to be recognized by some flavours of automake
- autotools_run_tool automake --add-missing --copy ${extra_opts} "$@"
+ autotools_run_tool automake --add-missing --copy "${extra_opts[@]}" "$@"
}
# @FUNCTION: eautopoint