summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaetan Nadon <memsize@videotron.ca>2014-01-31 19:09:07 -0500
committerGaetan Nadon <memsize@videotron.ca>2014-02-03 17:26:38 -0500
commit879a1aa3ef8aca4d737aacba35bf0850e46c9a02 (patch)
tree3af3bb9ab91e810c49fcc085009ec09056116d5c
parent08666113d3341b9817c8821854d1297acfd5f58f (diff)
downloadutil-wm-879a1aa3ef8aca4d737aacba35bf0850e46c9a02.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: Arnaud Fontaine <arnau@debian.org> Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
-rw-r--r--configure.ac12
1 files changed, 7 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac
index 9e89119..634c2a1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -11,8 +11,10 @@ AC_TYPE_SSIZE_T
XCB_UTIL_M4_WITH_INCLUDE_PATH
XCB_UTIL_COMMON([1.4], [1.6])
-AC_OUTPUT([Makefile
- icccm/Makefile icccm/xcb-icccm.pc
- ewmh/Makefile ewmh/xcb-ewmh.pc
- xcb_util_intro
- ])
+AC_CONFIG_FILES([Makefile
+ icccm/Makefile
+ icccm/xcb-icccm.pc
+ ewmh/Makefile
+ ewmh/xcb-ewmh.pc
+ xcb_util_intro])
+AC_OUTPUT