maint: fix code smell

Detected by `make findutils-check-smells` (ironically for itself):
  error: ./Makefile.am:88: Spaces at start of makefile line

* Makefile.am (findutils-check-smells): Fix tab indentation of the
recipe, and re-indent for better reading.
This commit is contained in:
2022-04-24 13:37:00 +02:00
parent 6d2fa2c9a0
commit 36ec95c4d6

View File

@@ -80,17 +80,18 @@ findutils-check-testfiles:
findutils-check-smells:
find $(srcdir) \( -path $(srcdir)/autom4te.cache -o \
-path $(srcdir)/gnulib -o \
-path $(srcdir)/gl -o \
-path $(srcdir)/gnulib-tests -o \
-name .git -o \
\( -type d -name CVS \) \
\) -prune -o \
\( -type f -o -type l \) \
\! \( -name '*~' -o -name '*.xo' -o -name '*.xi' \) \
-print0 | \
xargs -0 python $(AUXDIR)/src-sniff.py
find $(srcdir) \
\( -path $(srcdir)/autom4te.cache -o \
-path $(srcdir)/gnulib -o \
-path $(srcdir)/gl -o \
-path $(srcdir)/gnulib-tests -o \
-name .git -o \
\( -type d -name CVS \) \
\) -prune -o \
\( -type f -o -type l \) \
\! \( -name '*~' -o -name '*.xo' -o -name '*.xi' \) \
-print0 \
| xargs -0 python $(AUXDIR)/src-sniff.py
# Update gnulib to latest, merging some additional files we take from there
# as well. This only works if the working tree of both findutils and gnulib