summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2013-02-23 10:45:21 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2013-02-23 10:45:40 -0800
commite2e8c6deb24ab10e6563969c77f3c2bf37e2f39b (patch)
tree1156a881a53464c75fa004b127e4444a76198c02
parent5fed965971ed24711e020438e55339a9a89ba386 (diff)
config: replace old-style AC_OUTPUT with AC_CONFIG_FILES + new AC_OUTPUT
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--configure.ac5
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 8f55c81..c85e47f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -25,7 +25,7 @@ dnl Process this file with autoconf to create configure.
# Initialize Autoconf
AC_PREREQ([2.60])
AC_INIT([constype], [1.0.4],
- [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],constype)
+ [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [constype])
AC_CONFIG_SRCDIR([Makefile.am])
AC_CONFIG_HEADERS([config.h])
@@ -47,4 +47,5 @@ AM_CONDITIONAL(BUILD_CONSTYPE, [test x$BUILD_CONSTYPE = xyes])
XORG_WITH_LINT
-AC_OUTPUT([Makefile])
+AC_CONFIG_FILES([Makefile])
+AC_OUTPUT