From 64bc2b97d408d6fea16716e37f7b5ff1661d57fd Mon Sep 17 00:00:00 2001 From: Gaetan Nadon Date: Fri, 25 Oct 2013 21:51:37 -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 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index faa4f36..0b8cee6 100644 --- a/configure.ac +++ b/configure.ac @@ -67,5 +67,6 @@ AC_ARG_WITH(appdefaultdir, [appdefaultdir="$withval"], [appdefaultdir="${xt_appdefaultdir}"]) AC_SUBST(appdefaultdir) -AC_OUTPUT([Makefile +AC_CONFIG_FILES([Makefile man/Makefile]) +AC_OUTPUT -- cgit v1.2.3