[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[automake-commit] branch master updated: depend: trim spurious leading t
From: |
Mike Frysinger |
Subject: |
[automake-commit] branch master updated: depend: trim spurious leading tab |
Date: |
Wed, 04 Jan 2023 19:20:22 -0500 |
This is an automated email from the git hooks/post-receive script.
vapier pushed a commit to branch master
in repository automake.
View the commit online:
https://git.savannah.gnu.org/gitweb/?p=automake.git;a=commitdiff;h=2cb09ea927a63708afade014a4ac8959d9d6b74e
The following commit(s) were added to refs/heads/master by this push:
new 2cb09ea92 depend: trim spurious leading tab
2cb09ea92 is described below
commit 2cb09ea927a63708afade014a4ac8959d9d6b74e
Author: Mike Frysinger <vapier@gentoo.org>
AuthorDate: Tue Jan 3 21:07:45 2023 -0500
depend: trim spurious leading tab
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(-)
diff --git a/lib/am/depend.am b/lib/am/depend.am
index f14c4210c..5015d75ad 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
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [automake-commit] branch master updated: depend: trim spurious leading tab,
Mike Frysinger <=