summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2013-01-19 09:24:41 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2013-01-19 09:24:41 -0800
commit9efb1bb60a8190ffb7b2b9389749795c2b092a6a (patch)
tree41bdd43e69bed7d7fc6bd3bd845b86e95d5391ac
parent287d4bac2826de32365afcb2cbe0ec24abd2eecd (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, 7 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index e7b937d..2f0f23b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,14 @@
+dnl
+dnl Process this file with autoconf to create configure.
+
+# Initialize Autoconf
AC_PREREQ([2.60])
AC_INIT([xcursor-themes], [1.0.3],
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
[xcursor-themes])
+AC_CONFIG_SRCDIR([Makefile.am])
+
+# Initialize Automake
AM_INIT_AUTOMAKE([foreign dist-bzip2])
AM_MAINTAINER_MODE