From: Mathieu Lirzin Date: Fri, 16 Jun 2017 21:07:00 +0000 (+0200) Subject: Merge branch 'minor' X-Git-Tag: v1.16~36 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cc7231cc3668a387ae36905efca11f9d236c8df6;p=thirdparty%2Fautomake.git Merge branch 'minor' --- cc7231cc3668a387ae36905efca11f9d236c8df6 diff --cc bootstrap index 3b11cd869,d0766d4c8..82ed9937b --- a/bootstrap +++ b/bootstrap @@@ -39,8 -41,17 +43,8 @@@ PACKAGE=automak datadir=. # This should be automatically updated by the 'update-copyright' # rule of our Makefile. - RELEASE_YEAR=2015 + RELEASE_YEAR=2017 -# Override SHELL. This is required on DJGPP so that Perl's system() -# uses bash, not COMMAND.COM which doesn't quote arguments properly. -# It's not used otherwise. -if test -n "$DJDIR"; then - BOOTSTRAP_SHELL=/dev/env/DJDIR/bin/bash.exe -else - BOOTSTRAP_SHELL=/bin/sh -fi - # Read the rule for calculating APIVERSION and execute it. apiver_cmd=`sed -ne 's/\[\[/[/g;s/\]\]/]/g;/^APIVERSION=/p' configure.ac` eval "$apiver_cmd" diff --cc lib/texinfo.tex index ab55d5b0c,9c5e0fc08..371f60e45 --- a/lib/texinfo.tex +++ b/lib/texinfo.tex @@@ -3,9 -3,12 +3,12 @@@ % Load plain if necessary, i.e., if running under initex. \expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi % - \def\texinfoversion{2013-02-01.11} -\def\texinfoversion{2017-03-05.09} ++\def\texinfoversion{2017-06-16.23} % - % Copyright 1985-2017 Free Software Foundation, Inc. + % Copyright 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995, + % 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, + % 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 + % Free Software Foundation, Inc. % % This texinfo.tex file is free software: you can redistribute it and/or % modify it under the terms of the GNU General Public License as diff --cc t/gettext-macros.sh index 34f4e9c0e,10baffa54..a8185af84 --- a/t/gettext-macros.sh +++ b/t/gettext-macros.sh @@@ -28,29 -28,19 +28,20 @@@ extract_program_version ( echo "# Automatically generated by $me." > get.sh echo : >> get.sh - # The 'gettextize' and 'autopoint' scripts will look into Makefile.am. + # The 'autopoint' script will look into Makefile.am. -echo ACLOCAL_AMFLAGS = -I m4 > Makefile.am +echo AUTOMAKE_OPTIONS = -Wno-obsolete > Makefile.am +echo ACLOCAL_AMFLAGS = -I m4 >> Makefile.am - # Prefer autopoint to gettextize, since the more modern versions of the - # latter might unconditionally require user interaction to complete; - # yes, this means confirmation from /dev/tty (!) -- see: + # Prefer autopoint to gettextize, since the latter unconditionally + # requires user interaction to complete; yes, this means confirmation + # from /dev/tty (!) -- see: # - # Since this "forced interaction" behaviour of gettextize wasn't present - # before the introduction of autopoint, we should be able to safely - # fall back to calling gettextize non-interactively if autopoint is not - # present. - if autopoint --version; then - am_gettextize_command=autopoint - else - am_gettextize_command=gettextize - fi - # We will need to specify the correct autopoint (or gettextize) version - # in the AM_GNU_GETTEXT_VERSION call in configure.ac if we want autopoint - # (or gettextize) to setup the correct infrastructure -- in particular, - # for what concerns us, to bring in all the required .m4 files. - autopoint_version=$(extract_program_version $am_gettextize_command) \ + # We will need to specify the correct autopoint version in the + # AM_GNU_GETTEXT_VERSION call in configure.ac if we want autopoint to + # setup the correct infrastructure -- in particular, for what concerns + # us, to bring in all the required .m4 files. + autopoint_version=$(extract_program_version autopoint) \ && test -n "$autopoint_version" \ || autopoint_version=0.10.35