diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-06-18 09:50:04 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-06-18 09:50:04 -0700 |
commit | 542a6dd61ce334924494af2fcf8a4613ef86aace (patch) | |
tree | cc7f29831ccea68fff81db09c3d79d0ebea230c5 | |
parent | 3dc64b0b0a7d4e14ccea6b9d1d11bf871c47a7e0 (diff) |
Use AC_CONFIG_FILES to replace the deprecated AC_OUTPUT with parameters
configure.ac:32: warning: AC_OUTPUT should be used without arguments.
configure.ac:32: You should run autoupdate.
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 2ff994c..853601e 100644 --- a/configure.ac +++ b/configure.ac @@ -29,4 +29,5 @@ AC_SYS_LARGEFILE dnl Check for pkg-config packages PKG_CHECK_MODULES(X, [xproto >= 7.0.17]) -AC_OUTPUT([Makefile]) +AC_CONFIG_FILES([Makefile]) +AC_OUTPUT |