diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2013-10-28 08:08:55 -0400 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2013-10-28 08:08:55 -0400 |
commit | 7cd1bb9caedbd18de2c25d3b1253921a17042233 (patch) | |
tree | ecaf9cbbdc340bd6cf3cb0ade017a9cf69fb40ca | |
parent | 0586f84387e5bc6a655aab68521c98cd8b40b546 (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 0bc0e8f..9ab6da7 100644 --- a/configure.ac +++ b/configure.ac @@ -44,4 +44,5 @@ XORG_FONT_MACROS_VERSION(1.2) XORG_FONTDIR([cyrillic]) XORG_FONT_BDF_UTILS -AC_OUTPUT([Makefile]) +AC_CONFIG_FILES([Makefile]) +AC_OUTPUT |