summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2013-01-19 16:07:56 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2013-01-19 16:07:56 -0800
commitc0fea07b26943cbb7eb9947b90013d77f73e573a (patch)
treee72f9e9842ab6f41e6d1bba89e309e9d6714130d
parent318ba2333984a7cadfba6ffc269427c61966b0f4 (diff)
config: Add missing AC_CONFIG_SRCDIR
Regroup AC statements under the Autoconf initialization section. Regroup AM statements under the Automake initialization section. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--configure.ac6
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 58ae414..8e5338c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -21,12 +21,16 @@ dnl DEALINGS IN THE SOFTWARE.
dnl
dnl Process this file with autoconf to create configure.
+# Initialize Autoconf
AC_PREREQ([2.60])
AC_INIT([rgb], [1.0.4],
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [rgb])
+AC_CONFIG_SRCDIR([Makefile.am])
+AC_CONFIG_HEADERS([config.h])
+
+# Initialize Automake
AM_INIT_AUTOMAKE([foreign dist-bzip2])
AM_MAINTAINER_MODE
-AC_CONFIG_HEADERS([config.h])
# Require X.Org macros 1.8 or later for MAN_SUBSTS set by XORG_MANPAGE_SECTIONS
m4_ifndef([XORG_MACROS_VERSION],