[PATCH] Update call to AM_INIT_AUTOMAKE

Sergio Durigan Junior sergiodj en sergiodj.net
Lun Abr 14 04:40:07 UTC 2014


According to:

  <https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation>

the call to AM_INIT_AUTOMAKE should be updated to take no arguments (in
our case), because the other forms will be deprecated.  This patch does
that.

Tested with an older version of automake to make sure nothing breaks.
---
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index d133041..c3699ea 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
 AC_INIT(rnetclient,2014.1,softwares-impostos em fsfla.org)
 AC_CONFIG_AUX_DIR(build-aux)
-AM_INIT_AUTOMAKE(AC_PACKAGE_NAME,AC_PACKAGE_VERSION)
+AM_INIT_AUTOMAKE
 AC_PROG_CC
 AC_PROG_INSTALL
 PKG_CHECK_MODULES(GNUTLS, gnutls >= 1.4.0, , AC_MSG_ERROR(Could not find gnutls))
-- 
1.9.0


-- 
Sergio


Más información sobre la lista de distribución Softwares-impostos