> "Akim" == Akim Demaille <[EMAIL PROTECTED]> writes:
Tom> Instead they have to use &variable_value or &variable_value_as_list.
Akim> &am_line_error ('SUBDIRS',
Akim> "AM_GNU_GETTEXT used but \`po' not in SUBDIRS")
Akim> if &variable_value ('SUBDIRS') !~ /\bpo\b/;
I
Tom Tromey <[EMAIL PROTECTED]> writes:
> > "Akim" == Akim Demaille <[EMAIL PROTECTED]> writes:
>
> Akim> +&am_line_error ('SUBDIRS',
> Akim> + "AM_GNU_GETTEXT used but \`po' not in SUBDIRS")
> Akim> + if $contents{'SUBDIRS'} !~ /\bpo\b/;
> Akim> +&am_line_error
> "Akim" == Akim Demaille <[EMAIL PROTECTED]> writes:
Akim> +&am_line_error ('SUBDIRS',
Akim> + "AM_GNU_GETTEXT used but \`po' not in SUBDIRS")
Akim> + if $contents{'SUBDIRS'} !~ /\bpo\b/;
Akim> +&am_line_error ('SUBDIRS',
Akim> + "AM_GNU_GETTEXT used but
FYI, here is the top of handle_gettext.
sub handle_gettext
{
return if ! $seen_gettext || $relative_dir ne '.';
if (! &variable_defined ('SUBDIRS'))
{
&am_conf_error
("AM_GNU_GETTEXT used but SUBDIRS not defined");
return;
}
Index: ChangeLog
from Ak