From: Tom Tromey Date: Wed, 4 Jul 2001 18:58:33 +0000 (+0000) Subject: 2001-07-04 OKUJI Yoshinori X-Git-Tag: Release-1-4j~59 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=06e2b75645fdf9bd38e25557c4f3a227261affe0;p=thirdparty%2Fautomake.git 2001-07-04 OKUJI Yoshinori * automake.in (scan_texinfo_file): Add the second argument to `@syncodeindex' into @CLEAN_SUFFIXES, because the combined index itself may not be used directly. --- diff --git a/ChangeLog b/ChangeLog index 137a47ba8..46dfb889b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2001-07-04 OKUJI Yoshinori + + * automake.in (scan_texinfo_file): Add the second argument to + `@syncodeindex' into @CLEAN_SUFFIXES, because the combined index + itself may not be used directly. + 2001-07-04 Tom Tromey * missing: Updated. diff --git a/automake.in b/automake.in index 74df0f335..89267917b 100755 --- a/automake.in +++ b/automake.in @@ -2896,9 +2896,10 @@ sub scan_texinfo_file } # Merging an index into an another. - elsif (/^\@syn(code)?index (\w+) \w+/) + elsif (/^\@syn(code)?index (\w+) (\w+)/) { push @syncodeindexes, "$2s"; + push @clean_suffixes, "$3s"; } }