From: Stefano Lattarini Date: Sat, 16 Jun 2012 10:01:58 +0000 (+0200) Subject: [ng] refactor: more proper name for a subroutine in automake X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=096f9bd32762d4474937cb527c4eb7c461f8f8aa;p=thirdparty%2Fautomake.git [ng] refactor: more proper name for a subroutine in automake 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 --- diff --git a/automake.in b/automake.in index 8e2e1f47c..c8b7f325c 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);