diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-07-24 11:28:23 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-07-24 11:28:23 -0700 |
commit | 6ca7e1c3dcbbadc823d8626c5b54e1d43c506e71 (patch) | |
tree | c5ebd3ccba2e2ce2a1ea7c614ac8cc957c6c78f7 | |
parent | 8eccd06a769cfa5dd9fc55a2b765674d5e76a10d (diff) |
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 <alan.coopersmith@oracle.com>
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
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 |