Tag
Hash :
4becb02d
Author :
Date :
2001-10-21T18:05:22
* tests/install.test: This test is an empty shell, do not run automake. * tests/Makefile.am (TESTS): Don't run it. * tests/defs (ACLOCAL): When using gettext, pass in the installed aclocaldir. * tests/subdircond.test (SUBDIRS): AM_GNU_GETTEXT needs automake --add--missing. * tests/obsolete2.test: Remove, merged into... * tests/obsolete.test: here. Both aclocal and automake should complain.
#! /bin/sh
# It is ok to have a conditional SUBDIRS when using gettext.
required=gettext
. $srcdir/defs || exit 1
cat >> configure.in << 'END'
AM_GNU_GETTEXT
AM_CONDITIONAL(MAUDE, true)
ALL_LINGUAS=
AC_SUBST(ALL_LINGUAS)
END
mkdir po intl
cat > Makefile.am << 'END'
if MAUDE
SUBDIRS = po intl
else
SUBDIRS =
endif
END
$ACLOCAL || exit 1
# Gettext wants config.guess etc.
$AUTOMAKE --add-missing