the languages test in configure.in doesn't allow for building outside the
source tree
dnl Select Error language
AC_ARG_ENABLE(err-language,
[ --enable-err-language=lang
Select language for Error pages (see errors
dir) ],
[
if test -d errors/$enableval; then
ERR_LANGUAGE=$enableval
else
echo "ERROR! Unknown language $enableval, see errors/"
exit 1
fi
],[ERR_LANGUAGE="English"])
AC_SUBST(ERR_LANGUAGE)
the test line should read
if test -d $srcdir/errors/$enableval; then
(sorry for no line numbers, couldn't bother downloading the entire devel
branch for a 1 line patch. )
Rob
Received on Tue Aug 01 2000 - 07:15:30 MDT
This archive was generated by hypermail pre-2.1.9 : Tue Dec 09 2003 - 16:12:33 MST