From 62c65a79e142012067a76acf70b86438d56636e1 Mon Sep 17 00:00:00 2001 From: Alberto Leiva Popper Date: Thu, 22 Jun 2023 14:14:50 -0600 Subject: [PATCH] Update configure.ac Fixes warning: > warning: AC_OUTPUT should be used without arguments. > configure.ac:52: You should run autoupdate. --- configure.ac | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index c7e7870c..755c6900 100644 --- a/configure.ac +++ b/configure.ac @@ -1,8 +1,8 @@ # -*- Autoconf -*- # Process this file with autoconf to produce a configure script. -AC_PREREQ([2.69]) -AC_INIT([fort], [1.5.4], [fort-validator@nic.mx]) +AC_PREREQ([2.71]) +AC_INIT([fort],[1.5.4],[fort-validator@nic.mx]) AC_CONFIG_SRCDIR([src/main.c]) AM_INIT_AUTOMAKE([subdir-objects]) @@ -49,4 +49,5 @@ PKG_CHECK_MODULES([CHECK], [check], [usetests=yes], [usetests=no]) AM_CONDITIONAL([USE_TESTS], [test "x$usetests" = "xyes"]) # Spit out the makefiles. -AC_OUTPUT(Makefile src/Makefile man/Makefile test/Makefile) +AC_CONFIG_FILES([Makefile src/Makefile man/Makefile test/Makefile]) +AC_OUTPUT -- 2.47.3