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 | 6d5ccf3c1561a2fc49f3a4f0223ec8f05de5560d (patch) | |
tree | 546d1b3c07a870ee33079406e78000adc4180122 | |
parent | a3c2a330f0f093bbb6f7fd18a56329e05501dbfb (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 d502b3f..49cf890 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 |