diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2013-10-26 09:42:05 -0400 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2013-10-26 09:42:05 -0400 |
commit | a8aa17cb63493b4b756587ddc884a9055dba14da (patch) | |
tree | d4ed8d23d48dbd2da01d353b3534e67297c82894 | |
parent | ed5a86761d96d4bdebda4f09071a49cbf4688d1b (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: Gaetan Nadon <memsize@videotron.ca>
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 0e21f8e..53c6e34 100644 --- a/configure.ac +++ b/configure.ac @@ -209,8 +209,9 @@ if test "x$WIDEPROTO" = xno; then fi -AC_OUTPUT([Makefile +AC_CONFIG_FILES([Makefile specs/Makefile specs/SIAddresses/Makefile Xpoll.h xproto.pc]) +AC_OUTPUT |