summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaetan Nadon <memsize@videotron.ca>2014-02-04 14:09:21 -0500
committerArnaud Fontaine <arnau@debian.org>2014-02-17 17:38:33 +0900
commit38d6ba170d0e174871e56fad2762055cfc0189cc (patch)
treea4bbb2ec14b63c976f78742f72330839cd91918e
parent3c3413e2295108b9f7b81b59baf1105c5bcc872f (diff)
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. Signed-off-by: Gaetan Nadon <memsize@videotron.ca> Reviewed-by: Arnaud Fontaine <arnau@debian.org>
-rw-r--r--configure.ac9
1 files changed, 5 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index 6c8a277..6dea1c9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -11,7 +11,8 @@ XCB_UTIL_COMMON([1.4], [1.6])
PKG_CHECK_MODULES(XCB_RENDER, xcb-render)
-AC_OUTPUT([Makefile
- renderutil/Makefile renderutil/xcb-renderutil.pc
- xcb_util_intro
- ])
+AC_CONFIG_FILES([Makefile
+ renderutil/Makefile
+ renderutil/xcb-renderutil.pc
+ xcb_util_intro])
+AC_OUTPUT