automake-ng
[Top][All Lists]
Advanced

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

[Automake-NG] [PATCH 16/26] [ng] refactor: more proper name for a subrou


From: Stefano Lattarini
Subject: [Automake-NG] [PATCH 16/26] [ng] refactor: more proper name for a subroutine in automake
Date: Sat, 16 Jun 2012 23:30:03 +0200

After the past heavy changes, a subroutine's name has got out-of-sync
with its purpose.

* automake.in (output_texinfo_build_rules): Rename ...
* (handle_texinfo_source): ... like this.

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

diff --git a/automake.in b/automake.in
index 85b4419..59156bd 100644
--- a/automake.in
+++ b/automake.in
@@ -2842,13 +2842,13 @@ sub scan_texinfo_file ($)
 
 
 # @CLEAN_FILES
-# output_texinfo_build_rules ($SOURCE, $DEST, $INSRC, @DEPENDENCIES)
+# handle_texinfo_source ($SOURCE, $DEST, $INSRC, @DEPENDENCIES)
 # ------------------------------------------------------------------
 # SOURCE - the source Texinfo file
 # DEST - the destination Info file
 # INSRC - whether DEST should be built in the source tree
 # DEPENDENCIES - known dependencies
-sub output_texinfo_build_rules ($$$@)
+sub handle_texinfo_source ($$$@)
 {
   my ($source, $dest, $insrc, @deps) = @_;
 
@@ -3046,8 +3046,8 @@ sub handle_texinfo_helper ($)
          push_dist_common ('$(' . $canonical . '_TEXINFOS)');
        }
 
-      my @cfiles = output_texinfo_build_rules ($texi, $out_file,
-                                               $insrc, @texi_deps);
+      my @cfiles = handle_texinfo_source ($texi, $out_file,
+                                          $insrc, @texi_deps);
       push (@texi_cleans, @cfiles);
 
       push (@info_deps_list, $out_file);
-- 
1.7.9.5




reply via email to

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