[PATCH] depend: trim spurious leading tab

  • Done
  • quality assurance status badge
Details
2 participants
  • Karl Berry
  • Mike Frysinger
Owner
unassigned
Submitted by
Mike Frysinger
Severity
normal
M
M
Mike Frysinger wrote on 4 Jan 2023 03:40
(address . automake-patches@gnu.org)
20230104024013.1390-1-vapier@gentoo.org
These vars are replaced with a list of remove commands that are joined
with a \n and each line always has a leading \t inserted. That means
the literal tab here before the var leads to 2 tabs included in the
output. While not functionally a problem, it can be a bit confusing
when reading the output as it implies something is amiss. Trimming
the tab also aligns with the other .am files which don't include it.

* lib/am/depend.am: Delete tab before %DISTRMS%.
---
lib/am/depend.am | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Toggle diff (16 lines)
diff --git a/lib/am/depend.am b/lib/am/depend.am
index ecea1fcaa9bc..da8cc6c80f17 100644
--- a/lib/am/depend.am
+++ b/lib/am/depend.am
@@ -31,7 +31,7 @@ am--depfiles: $(am__depfiles_remade)
## recursive).
if %?DISTRMS%
distclean:
- %DISTRMS%
+%DISTRMS%
maintainer-clean:
- %DISTRMS%
+%DISTRMS%
endif
--
2.39.0
K
K
Karl Berry wrote on 5 Jan 2023 00:54
(address . vapier@gentoo.org)(address . 60536@debbugs.gnu.org)
202301042354.304NsWUW008642@freefriends.org
distclean:
- %DISTRMS%
+%DISTRMS%
maintainer-clean:
- %DISTRMS%
+%DISTRMS%

Sure, looks good. Please commit. Thanks Mike. -k
M
M
Mike Frysinger wrote on 5 Jan 2023 01:25
Control message
(address . control@debbugs.gnu.org)
20230105002557.694E9335D7B@smtp.gentoo.org
close 60536
thankyou
?