+2003-02-11 Alexandre Duret-Lutz <adl@gnu.org>
+
+ Temporary hack for PR automake/381:
+ * automake.in (handle_gettext): Turn missing po/ and intl/ errors
+ into -Wsyntax warnings.
+
2003-02-10 Richard Dawe <rich@phekda.freeserve.co.uk>
* Makefile.am: Substitute @SHELL@ in automake.in and aclocal.in.
}
my @subdirs = &variable_value_as_list_recursive ('SUBDIRS', 'all');
- err_var 'SUBDIRS', "AM_GNU_GETTEXT used but `po' not in SUBDIRS"
+ msg_var 'syntax', 'SUBDIRS', "AM_GNU_GETTEXT used but `po' not in SUBDIRS"
if ! grep ($_ eq 'po', @subdirs);
# intl/ is not required when AM_GNU_GETTEXT is called with
# the `external' option.
- err_var 'SUBDIRS', "AM_GNU_GETTEXT used but `intl' not in SUBDIRS"
+ msg_var 'syntax', 'SUBDIRS', "AM_GNU_GETTEXT used but `intl' not in SUBDIRS"
if (! $seen_gettext_external
&& ! grep ($_ eq 'intl', @subdirs));