summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2010-11-07 11:12:11 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2010-11-07 11:12:21 -0800
commit5a57ccd8ee6f7b5692b2b3f9b3135c05282dae4b (patch)
tree783cc84f0fda9d361436d9abadde78f808e5e3fe
parent8ee1e27b63c5f90bcf8a9b55b947f3b0a00eaf91 (diff)
config: Add missing AC_CONFIG_SRCDIR
Regroup AC statements under the Autoconf initialization section. Regroup AM sttaements 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 45e4cd2..9e14378 100644
--- a/configure.ac
+++ b/configure.ac
@@ -20,8 +20,13 @@ dnl USE OR PERFORMANCE OF THIS SOFTWARE.
dnl
dnl Process this file with autoconf to create configure.
+# Initialize Autoconf
AC_PREREQ([2.60])
-AC_INIT(mkfontdir, [1.0.5], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], mkfontdir)
+AC_INIT([mkfontdir], [1.0.5],
+ [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [mkfontdir])
+AC_CONFIG_SRCDIR([Makefile.am])
+
+# Initialize Automake
AM_INIT_AUTOMAKE([foreign dist-bzip2])
AM_MAINTAINER_MODE