From: Bruno Haible Date: Fri, 8 Sep 2017 23:06:34 +0000 (+0200) Subject: gnulib-tool.py: follow gnulib-tool changes, part 6 X-Git-Tag: v1.0~5938 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=2eb61725393a31297c5cce3508e0116e1a167405;p=gnulib.git gnulib-tool.py: follow gnulib-tool changes, part 6 Follow gnulib-tool change 2013-05-10 Stefano Lattarini deps: require Automake >= 1.9.6 in generated Makefile fragments --- diff --git a/ChangeLog b/ChangeLog index 9de3f0cae0..6237af0f5a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -13587,7 +13587,7 @@ o Test only that noncanonical values do not cause crashes, not that maint.mk: catch more abuse of HAVE_DECL in syntax-check * top/maint.mk (sc_prohibit_defined_have_decl_tests): Relax regex. -2012-05-10 Stefano Lattarini +2013-05-10 Stefano Lattarini deps: require Automake >= 1.9.6 in generated Makefile fragments diff --git a/pygnulib/GLEmiter.py b/pygnulib/GLEmiter.py index 178cdee292..daefeca12a 100644 --- a/pygnulib/GLEmiter.py +++ b/pygnulib/GLEmiter.py @@ -756,7 +756,7 @@ AC_DEFUN([%V1%_LIBSOURCES], [ # object files (example: hash.c and libxml/hash.c). if uses_subdirs: subdir_options = string(' subdir-objects') - emit += 'AUTOMAKE_OPTIONS = 1.5 gnits%s\n' % subdir_options + emit += 'AUTOMAKE_OPTIONS = 1.9.6 gnits%s\n' % subdir_options emit += '\n' if not makefile: emit += 'SUBDIRS =\n' @@ -1045,7 +1045,7 @@ AC_DEFUN([%V1%_LIBSOURCES], [ subdir_options = string() if uses_subdirs: subdir_options = string(' subdir-objects') - emit += 'AUTOMAKE_OPTIONS = 1.5 foreign%s\n\n' % subdir_options + emit += 'AUTOMAKE_OPTIONS = 1.9.6 foreign%s\n\n' % subdir_options if for_test and not single_configure: emit += 'ACLOCAL_AMFLAGS = -I %s/%s\n\n' % ( testsbase_inverse, m4base) diff --git a/pygnulib/GLTestDir.py b/pygnulib/GLTestDir.py index 8e49a91f25..61407502ab 100644 --- a/pygnulib/GLTestDir.py +++ b/pygnulib/GLTestDir.py @@ -521,7 +521,7 @@ class GLTestDir(object): # Create Makefile.am. emit = string() emit += '## Process this file with automake to produce Makefile.in.\n\n' - emit += 'AUTOMAKE_OPTIONS = 1.5 foreign\n\n' + emit += 'AUTOMAKE_OPTIONS = 1.9.6 foreign\n\n' emit += 'SUBDIRS = %s\n\n' % ' '.join(subdirs) emit += 'ACLOCAL_AMFLAGS = -I %s\n' % m4base emit = constants.nlconvert(emit) @@ -949,7 +949,7 @@ class GLMegaTestDir(object): # Create Makefile.am. emit = string() emit += '## Process this file with automake to produce Makefile.in.\n\n' - emit += 'AUTOMAKE_OPTIONS = 1.5 foreign\n\n' + emit += 'AUTOMAKE_OPTIONS = 1.9.6 foreign\n\n' emit += 'SUBDIRS = %s\n\n' % ' '.join(megasubdirs) emit += 'EXTRA_DIST = do-autobuild\n' emit = constants.nlconvert(emit)