Re: 64-simplify-handle-gettext.patch

2001-02-25 Thread Tom Tromey
> "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

Re: 64-simplify-handle-gettext.patch

2001-02-25 Thread Akim Demaille
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

Re: 64-simplify-handle-gettext.patch

2001-02-24 Thread Tom Tromey
> "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

64-simplify-handle-gettext.patch

2001-02-24 Thread Akim Demaille
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