From: Akim Demaille Date: Mon, 9 Apr 2001 14:58:00 +0000 (+0000) Subject: * automake.in ($source_suffix_pattern): Remove, unused. X-Git-Tag: handle-languages~77 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=16c6fca51d7a9646a6a450974f8fe26e1e3280d8;p=automake.git * automake.in ($source_suffix_pattern): Remove, unused. %extension_map seems to have replaced it. --- diff --git a/ChangeLog b/ChangeLog index bff8d79e..328ce11a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-04-09 Akim Demaille + + * automake.in ($source_suffix_pattern): Remove, unused. + %extension_map seems to have replaced it. + 2001-04-09 Akim Demaille * ext-compile.am: New file. diff --git a/automake.in b/automake.in index 9f21b48e..0101fa8c 100755 --- a/automake.in +++ b/automake.in @@ -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"; }