2001-07-04 OKUJI Yoshinori <okuji@gnu.org>
authorTom Tromey <tromey@redhat.com>
Wed, 4 Jul 2001 18:58:33 +0000 (18:58 +0000)
committerTom Tromey <tromey@redhat.com>
Wed, 4 Jul 2001 18:58:33 +0000 (18:58 +0000)
* automake.in (scan_texinfo_file): Add the second argument to
`@syncodeindex' into @CLEAN_SUFFIXES, because the combined index
itself may not be used directly.

ChangeLog
automake.in

index 137a47b..46dfb88 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2001-07-04  OKUJI Yoshinori  <okuji@gnu.org>
+
+       * 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  <tromey@redhat.com>
 
        * missing: Updated.
index 74df0f3..8926791 100755 (executable)
@@ -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";
       }
 
     }