From 8e47c819490331c01959332e067f06a382d9a14a Mon Sep 17 00:00:00 2001 From: Gaetan Nadon Date: Thu, 14 Oct 2010 20:35:47 -0400 Subject: config: AC_OUTPUT with parms is deprecated, use AC_CONFIG_FILES Signed-off-by: Gaetan Nadon --- configure.ac | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index 2916d7c..44d9e56 100644 --- a/configure.ac +++ b/configure.ac @@ -55,8 +55,9 @@ fi PKG_CHECK_MODULES(SXPM, xt xext xextproto, build_sxpm=true, build_sxpm=false) AM_CONDITIONAL(BUILD_SXPM, test x$build_sxpm = xtrue) -AC_OUTPUT([Makefile - src/Makefile - sxpm/Makefile - cxpm/Makefile - xpm.pc]) +AC_CONFIG_FILES([Makefile + src/Makefile + sxpm/Makefile + cxpm/Makefile + xpm.pc]) +AC_OUTPUT -- cgit v1.2.1