]> Savannah Git Hosting - gnulib.git/commitdiff
gnulib-tool.py: follow gnulib-tool changes, part 6
authorBruno Haible <bruno@clisp.org>
Fri, 8 Sep 2017 23:06:34 +0000 (01:06 +0200)
committerBruno Haible <bruno@clisp.org>
Sat, 9 Sep 2017 14:28:59 +0000 (16:28 +0200)
Follow gnulib-tool change
2013-05-10  Stefano Lattarini  <stefano.lattarini@gmail.com>
deps: require Automake >= 1.9.6 in generated Makefile fragments

ChangeLog
pygnulib/GLEmiter.py
pygnulib/GLTestDir.py

index 9de3f0cae0fe1b8b9b9e1da540f599ba85c1256f..6237af0f5ae5a0ef566fc58442a5f878f1993eeb 100644 (file)
--- 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  <stefano.lattarini@gmail.com>
+2013-05-10  Stefano Lattarini  <stefano.lattarini@gmail.com>
 
        deps: require Automake >= 1.9.6 in generated Makefile fragments
 
index 178cdee2927f97870f3aa564e54335cf3b0865f2..daefeca12ab36aba31b46e634757d7906b435397 100644 (file)
@@ -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)
index 8e49a91f2534d97a8830e1bc1485658feb565e68..61407502ab9e8e2b8465a29e5ddd398e27dd7605 100644 (file)
@@ -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)