From ff557cac634a7675676cb84a573ceadd8b4dbbcb Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Fri, 27 Jul 2012 16:30:46 +0000 Subject: bfd: update to AC_INIT Move the package name/version from AM_INIT_AUTOMAKE to AC_INIT per recent autotools guidelines. We use recent versions of both, so it shouldn't be a problem. This sets PACKAGE_xxx variables correctly, and makes the output of: ./configure --version actually useful: bfd configure 2.22.52 Changing the other dirs to use AC_INIT would require a bit of m4 trickery that I don't feel like getting into, and they all use BFD_VERSION anyways, so there isn't much point. Signed-off-by: Mike Frysinger --- bfd/configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bfd/configure.in') diff --git a/bfd/configure.in b/bfd/configure.in index e8e83eca50..97fff61929 100644 --- a/bfd/configure.in +++ b/bfd/configure.in @@ -2,13 +2,13 @@ dnl Process this file with autoconf to produce a configure script. dnl AC_PREREQ(2.59) -AC_INIT +AC_INIT([bfd], [2.23.51]) AC_CONFIG_SRCDIR([libbfd.c]) AC_CANONICAL_TARGET AC_ISC_POSIX -AM_INIT_AUTOMAKE(bfd, 2.23.51) +AM_INIT_AUTOMAKE dnl These must be called before LT_INIT, because it may want dnl to call AC_CHECK_PROG. -- cgit v1.2.1