]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
depend: trim spurious leading tab
authorMike Frysinger <vapier@gentoo.org>
Wed, 4 Jan 2023 02:07:45 +0000 (21:07 -0500)
committerMike Frysinger <vapier@gentoo.org>
Wed, 4 Jan 2023 07:24:01 +0000 (02:24 -0500)
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

index f14c4210c81b0e74047c680c6cdc6263a0e35ac1..5015d75ad9c0f9809f6c89ea96ec92b88ca6a214 100644 (file)
@@ -31,7 +31,7 @@ am--depfiles: $(am__depfiles_remade)
 ## recursive).
 if %?DISTRMS%
 distclean:
-       %DISTRMS%
+%DISTRMS%
 maintainer-clean:
-       %DISTRMS%
+%DISTRMS%
 endif