diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2010-10-14 20:35:47 -0400 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2010-10-14 20:35:47 -0400 |
commit | 8e47c819490331c01959332e067f06a382d9a14a (patch) | |
tree | b574f606ed50b89c23fc2af1608948a07e352c49 | |
parent | c6915d034fa3f72a9724816d2e3f5e8432ef9321 (diff) |
config: AC_OUTPUT with parms is deprecated, use AC_CONFIG_FILES
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
-rw-r--r-- | configure.ac | 11 |
1 files 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 |