summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaetan Nadon <memsize@videotron.ca>2014-02-19 14:37:15 -0500
committerGaetan Nadon <memsize@videotron.ca>2014-04-17 10:21:13 -0400
commit369f761050933fc094c3836fcdb42ad961bf0340 (patch)
tree9838bb2f75278b7cae12d54cfcaa89024e20065e
parent1d022a8cb7e777702ac6d21fbae336164b953aa8 (diff)
downloadutil-image-369f761050933fc094c3836fcdb42ad961bf0340.tar.gz
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 Changed layout to one file per file like other xorg modules. Reviewed-by: Uli Schlachter <psychon@znc.in> Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
-rw-r--r--configure.ac9
1 files changed, 6 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 9a32f01..2f9482c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -15,7 +15,10 @@ PKG_CHECK_MODULES(XCB_SHM, xcb-shm)
PKG_CHECK_MODULES(XPROTO, xproto >= 7.0.8)
PKG_CHECK_MODULES(XCB_UTIL, xcb-util)
-AC_OUTPUT([Makefile
- image/Makefile image/xcb-image.pc
+AC_CONFIG_FILES([
+ Makefile
+ image/Makefile
+ image/xcb-image.pc
xcb_util_intro
- ])
+])
+AC_OUTPUT