emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r117831: Expand @AM_DEFAULT_VERBOSITY@ even if Autom


From: Paul Eggert
Subject: [Emacs-diffs] trunk r117831: Expand @AM_DEFAULT_VERBOSITY@ even if Automake is old.
Date: Sun, 07 Sep 2014 08:46:46 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 117831
revision-id: address@hidden
parent: address@hidden
fixes bug: http://debbugs.gnu.org/18415
committer: Paul Eggert <address@hidden>
branch nick: trunk
timestamp: Sun 2014-09-07 01:46:42 -0700
message:
  Expand @AM_DEFAULT_VERBOSITY@ even if Automake is old.
  
  * configure.ac: Assume verbose output for older Automake.
modified:
  ChangeLog                      changelog-20091113204419-o5vbwnq5f7feedwu-1538
  configure.ac                   
configure.in-20091113204419-o5vbwnq5f7feedwu-783
=== modified file 'ChangeLog'
--- a/ChangeLog 2014-09-06 07:40:43 +0000
+++ b/ChangeLog 2014-09-07 08:46:42 +0000
@@ -1,3 +1,8 @@
+2014-09-07  Paul Eggert  <address@hidden>
+
+       Expand @AM_DEFAULT_VERBOSITY@ even if Automake is old (Bug#18415).
+       * configure.ac: Assume verbose output for older Automake.
+
 2014-09-04  Paul Eggert  <address@hidden>
 
        * configure.ac (MAKEINFO): Clean up some configuration bitrot.

=== modified file 'configure.ac'
--- a/configure.ac      2014-09-04 02:02:46 +0000
+++ b/configure.ac      2014-09-07 08:46:42 +0000
@@ -980,6 +980,17 @@
    fi
 fi)
 
+dnl Port to Automake 1.11.
+dnl This section can be removed once we assume Automake 1.14 or later.
+: ${AM_DEFAULT_VERBOSITY=1}
+: ${AM_V=$AM_DEFAULT_VERBOSITY}
+: ${AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY}
+AC_SUBST([AM_V])
+AM_SUBST_NOTMAKE([AM_V])
+AC_SUBST([AM_DEFAULT_V])
+AM_SUBST_NOTMAKE([AM_DEFAULT_V])
+AC_SUBST([AM_DEFAULT_VERBOSITY])
+
 dnl Some other nice autoconf tests.
 dnl These are commented out, since gl_EARLY and/or Autoconf already does them.
 dnl AC_PROG_INSTALL


reply via email to

[Prev in Thread] Current Thread [Next in Thread]