summaryrefslogtreecommitdiff
path: root/configure.ac
blob: 9a2c988261bbc89e4d2b71b91baad16bd44fa04b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.52)

AC_INIT([a11y-test-suite], [2.15.2])
AC_CONFIG_SRCDIR(HACKING)
AC_COPYRIGHT([Copyright 2006 Novell, Inc.])

AM_INIT_AUTOMAKE

AC_PATH_PROG(PYTHON, python)
AC_MSG_CHECKING([python site path])
pythonsitedir="`./find-python-path.py`"
pythondir="\${libdir}/${pythonsitedir}"
AC_MSG_RESULT([$pythondir])
AC_SUBST(pythondir)

AC_CONFIG_FILES([
Makefile
python/Makefile
scripts/Makefile
])

AC_OUTPUT