summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2011-06-04 21:17:30 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2011-06-04 21:24:18 -0700
commit0df68dd170d1be2fbd5e87329164dae97fb18ad6 (patch)
treedcec05b2becffae3202eb5551ce706ffa49e7723
parent2921a02d56ab550ac307fc8ad313ad76c7b05f03 (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.ac7
1 files changed, 6 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index d6047bb..be4d80c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -21,8 +21,13 @@ dnl PERFORMANCE OF THIS SOFTWARE.
dnl
dnl Process this file with autoconf to create configure.
+# Initialize Autoconf
AC_PREREQ([2.60])
-AC_INIT(gccmakedep,[1.0.2], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],gccmakedep)
+AC_INIT([gccmakedep],[1.0.2],
+ [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],[gccmakedep])
+AC_CONFIG_SRCDIR([Makefile.am])
+
+# Initialize Automake
AM_INIT_AUTOMAKE([foreign dist-bzip2])
AM_MAINTAINER_MODE