* automake.in ($source_suffix_pattern): Remove, unused.
authorAkim Demaille <akim@epita.fr>
Mon, 9 Apr 2001 14:58:01 +0000 (14:58 +0000)
committerAkim Demaille <akim@epita.fr>
Mon, 9 Apr 2001 14:58:01 +0000 (14:58 +0000)
%extension_map seems to have replaced it.

ChangeLog
automake.in

index bff8d79..328ce11 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2001-04-09  Akim Demaille  <akim@epita.fr>
 
+       * automake.in ($source_suffix_pattern): Remove, unused.
+       %extension_map seems to have replaced it.
+
+2001-04-09  Akim Demaille  <akim@epita.fr>
+
        * ext-compile.am: New file.
        * automake.in (&finish_languages): Output it.
        Require a C linker if there are several registered source suffixes.
index 9f21b48..0101fa8 100755 (executable)
@@ -547,11 +547,6 @@ my %de_ansi_files;
 # corresponding output extension.
 my %suffix_rules;
 
-# This is a regular expression which matches all the known source
-# suffix.  A source suffix is one that appears in the first
-# position of a suffix rule.
-my $source_suffix_pattern;
-
 # This is the name of the redirect `all' target to use.
 my $all_target;
 
@@ -697,8 +692,6 @@ sub initialize_per_input ()
 
     %suffix_rules = ();
 
-    $source_suffix_pattern = '';
-
     $all_target = '';
 
     %extension_seen = ();
@@ -6248,7 +6241,6 @@ sub rule_define ($$$$)
     $suffix_rules{$source_suffix} = $object_suffix;
     print "Sources ending in .$source_suffix become .$object_suffix\n"
       if $verbose;
-    $source_suffix_pattern = "(" . join ('|', keys %suffix_rules) . ")";
     # Set SUFFIXES from suffix_rules.
     push @suffixes, ".$source_suffix", ".$object_suffix";
   }