From f99ee7616ced4d07684a30a67b72e46aba00c65f Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 30 Jun 2012 13:53:37 +0200 Subject: [PATCH] texi: clean after Texinfo manuals in $(SUBDIRS) directories correctly Fixes the regression exposed by previous commit 'v1.12.1-165-g498492f'. * automake.in (handle_texinfo_helper): Add $infobase.{t2d,t2p} to @mostly_cleans, but *without* the '$relative_dir/' prefix. Signed-off-by: Stefano Lattarini --- automake.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/automake.in b/automake.in index 11e750d5a..be7787026 100644 --- a/automake.in +++ b/automake.in @@ -3166,8 +3166,8 @@ sub handle_texinfo_helper ($) or next; # Directory of auxiliary files and build by-products used by texi2dvi # and texi2pdf. - push @mostly_cleans, "$relative_dir/$infobase.t2d"; - push @mostly_cleans, "$relative_dir/$infobase.t2p"; + push @mostly_cleans, "$infobase.t2d"; + push @mostly_cleans, "$infobase.t2p"; # If the Texinfo source is in a subdirectory, create the # resulting info in this subdirectory. If it is in the current -- 2.34.1