From f6379fec0d76470403d5726d894e6c40be17628b Mon Sep 17 00:00:00 2001 From: Gaetan Nadon Date: Sat, 26 Oct 2013 08:13:32 -0400 Subject: 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 --- configure.ac | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index 75bf8c2..07a4301 100644 --- a/configure.ac +++ b/configure.ac @@ -40,9 +40,9 @@ AM_CONDITIONAL(REDGLASS, true) AM_CONDITIONAL(HANDHELDS, true) -AC_OUTPUT([ - Makefile - handhelds/Makefile - redglass/Makefile - whiteglass/Makefile +AC_CONFIG_FILES([Makefile + handhelds/Makefile + redglass/Makefile + whiteglass/Makefile ]) +AC_OUTPUT -- cgit v1.2.3