From 6ca7e1c3dcbbadc823d8626c5b54e1d43c506e71 Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Sun, 24 Jul 2022 11:28:23 -0700 Subject: config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES Fix Automake warning: AC_OUTPUT should be used without arguments. www.gnu.org/software/autoconf/manual/autoconf.html#Configuration-Files Signed-off-by: Alan Coopersmith --- configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 5fc5de5..eb63c4a 100644 --- a/configure.ac +++ b/configure.ac @@ -72,4 +72,5 @@ DRIVER_NAME=elographics AC_SUBST([DRIVER_NAME]) -AC_OUTPUT([Makefile src/Makefile man/Makefile]) +AC_CONFIG_FILES([Makefile src/Makefile man/Makefile]) +AC_OUTPUT -- cgit v1.2.3