]> sourceware.org Git - automake.git/commitdiff
* automake.in ($source_suffix_pattern): Remove, unused.
authorAkim Demaille <akim@epita.fr>
Mon, 9 Apr 2001 14:58:00 +0000 (14:58 +0000)
committerAkim Demaille <akim@epita.fr>
Mon, 9 Apr 2001 14:58:00 +0000 (14:58 +0000)
%extension_map seems to have replaced it.

ChangeLog
automake.in

index bff8d79e9db2b5e05ee75886da30c02fdb93d45e..328ce11a4857bed77bcefb29c33d749541694eb8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+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.
index 9f21b48e186a2ef8e031a500236dd2313b2d5307..0101fa8c4701ddcee5891e0e1443cf54377c2dbc 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";
   }
This page took 0.042537 seconds and 5 git commands to generate.