automake-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 6/8] cleanup: remove unused '&count_files_for_language' subroutin


From: Stefano Lattarini
Subject: [PATCH 6/8] cleanup: remove unused '&count_files_for_language' subroutine
Date: Fri, 8 Jun 2012 10:20:28 +0200

* automake.in (count_files_for_language): Remove.  Its only remaining
caller (saw_sources_p) has stopped calling it in the previous commit.

Signed-off-by: Stefano Lattarini <address@hidden>
---
 automake.in |   38 --------------------------------------
 1 file changed, 38 deletions(-)

diff --git a/automake.in b/automake.in
index 347b952..ebafe08 100644
--- a/automake.in
+++ b/automake.in
@@ -6051,44 +6051,6 @@ sub saw_extension
     }
 }
 
-# Return the number of files seen for a given language.  Knows about
-# special cases we care about.  FIXME: this is hideous.  We need
-# something that involves real language objects.  For instance yacc
-# and yaccxx could both derive from a common yacc class which would
-# know about the strange ylwrap requirement.  (Or better yet we could
-# just not support legacy yacc!)
-sub count_files_for_language
-{
-    my ($name) = @_;
-
-    my @names;
-    if ($name eq 'yacc' || $name eq 'yaccxx')
-    {
-       @names = ('yacc', 'yaccxx');
-    }
-    elsif ($name eq 'lex' || $name eq 'lexxx')
-    {
-       @names = ('lex', 'lexxx');
-    }
-    else
-    {
-       @names = ($name);
-    }
-
-    my $r = 0;
-    foreach $name (@names)
-    {
-       my $lang = $languages{$name};
-       foreach my $ext (@{$lang->extensions})
-       {
-           $r += $extension_seen{$ext}
-               if defined $extension_seen{$ext};
-       }
-    }
-
-    return $r
-}
-
 # Called to ask whether source files (not headers) have been seen.
 sub saw_sources_p
 {
-- 
1.7.9.5




reply via email to

[Prev in Thread] Current Thread [Next in Thread]