diff options
author | Ludovic Court`es | 2007-06-11 14:36:24 +0000 |
---|---|---|
committer | Ludovic Court`es | 2007-06-11 14:36:24 +0000 |
commit | 1f48b0b69eda0e6b4262d69a77c6adbc13887159 (patch) | |
tree | 21a231da00aa6a9592b00762fe4b71388e4fb03f /configure.ac | |
parent | 9de369aeabb484175f8784c41dbad0592b5db91e (diff) | |
download | skribilo-1f48b0b69eda0e6b4262d69a77c6adbc13887159.tar.gz skribilo-1f48b0b69eda0e6b4262d69a77c6adbc13887159.tar.lz skribilo-1f48b0b69eda0e6b4262d69a77c6adbc13887159.zip |
Updated the top-level documentation files.
* configure.ac: Changed the bug report address to
`skribilo-users@nongnu.org'.
git-archimport-id: lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-73
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index 52f0b7b..21a73fc 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ(2.59) -AC_INIT(skribilo, 1.2, ludovic.courtes@laas.fr) +AC_INIT(skribilo, 1.2, skribilo-users@nongnu.org) AM_INIT_AUTOMAKE(skribilo, 1.2) AC_CONFIG_SRCDIR([src/guile/skribilo/reader.scm]) @@ -27,12 +27,12 @@ GUILE_MODULE_REQUIRED([system reader]) GUILE_MODULE_REQUIRED([srfi srfi-35]) # Look for Lout. -AC_PATH_PROG([LOUT], [lout], [not-found]) -AM_CONDITIONAL([HAVE_LOUT], [test "x$LOUT" != "xnot-found"]) +AC_PATH_PROG([LOUT], [lout]) +AM_CONDITIONAL([HAVE_LOUT], [test "x$LOUT" != "x"]) # Look for Ploticus. -AC_PATH_PROGS([PLOTICUS], [ploticus pl], [not-found]) -AM_CONDITIONAL([HAVE_PLOTICUS], [test "x$PLOTICUS" != "xnot-found"]) +AC_PATH_PROGS([PLOTICUS], [ploticus pl]) +AM_CONDITIONAL([HAVE_PLOTICUS], [test "x$PLOTICUS" != "x"]) AC_SUBST([SKRIBILO_DOC_DIR], ["$datadir/doc/skribilo"]) |