summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2023-01-03 21:07:45 -0500
committerMike Frysinger <vapier@gentoo.org>2023-01-04 02:24:01 -0500
commit2cb09ea927a63708afade014a4ac8959d9d6b74e (patch)
treedf0eb8b36c2440033426cee7de257cd7a24e69c6
parent34bdde960f2bccec96b86fa09cfd33363f4c3e52 (diff)
downloadautomake-2cb09ea927a63708afade014a4ac8959d9d6b74e.tar.gz
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%.
-rw-r--r--lib/am/depend.am4
1 files 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