Hash :
2bd4dd43
Author :
Date :
2001-02-26T01:10:33
* tests/Makefile.am (TESTS): Added subdircond.test. * tests/subdircond.test: New file. * automake.in (handle_gettext): Don't fail if SUBDIRS conditionally defined.
#! /bin/sh
# It is ok to have a conditional SUBDIRS when using 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
$AUTOMAKE