]> git.ipfire.org Git - thirdparty/FORT-validator.git/commitdiff
Update configure.ac
authorAlberto Leiva Popper <ydahhrk@gmail.com>
Thu, 22 Jun 2023 20:14:50 +0000 (14:14 -0600)
committerAlberto Leiva Popper <ydahhrk@gmail.com>
Thu, 22 Jun 2023 20:15:45 +0000 (14:15 -0600)
Fixes warning:

> warning: AC_OUTPUT should be used without arguments.
> configure.ac:52: You should run autoupdate.

configure.ac

index c7e7870c167ff35b55e9b1e72029a371bf236585..755c6900d103d111219bfa322a1a17c4be90f1ed 100644 (file)
@@ -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