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 | 441b8d83713ef2480180de98f184222b17a245ac (patch) | |
tree | 969415fd2d4ab2da65cb2c7207e2a17d7140ec1c /configure.ac | |
parent | 4e77b45e0d6b42a448dab2ec316eeb5c490ecfed (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>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index a8bd2d6..e17e346 100644 --- a/configure.ac +++ b/configure.ac @@ -16,5 +16,6 @@ m4_ifndef([XORG_MACROS_VERSION], XORG_MACROS_VERSION(1.3) XORG_DEFAULT_OPTIONS -AC_OUTPUT([Makefile +AC_CONFIG_FILES([Makefile xineramaproto.pc]) +AC_OUTPUT |