summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorGaetan Nadon <memsize@videotron.ca>2010-10-14 20:35:47 -0400
committerGaetan Nadon <memsize@videotron.ca>2010-10-14 20:35:47 -0400
commit8e47c819490331c01959332e067f06a382d9a14a (patch)
treeb574f606ed50b89c23fc2af1608948a07e352c49 /configure.ac
parentc6915d034fa3f72a9724816d2e3f5e8432ef9321 (diff)
downloadxorg-lib-libXpm-8e47c819490331c01959332e067f06a382d9a14a.tar.gz
config: AC_OUTPUT with parms is deprecated, use AC_CONFIG_FILES
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac11
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