summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Voelker <mail@bernhard-voelker.de>2022-04-24 13:37:00 +0200
committerBernhard Voelker <mail@bernhard-voelker.de>2022-04-24 13:37:00 +0200
commit36ec95c4d60f400a0a9e2e5bf4c749cc24239434 (patch)
tree61b2b0eb31f1f8267d44882881e1749e972c3e0b
parent6d2fa2c9a065743b9655427cedaf54bb55cd143f (diff)
downloadfindutils-36ec95c4d60f400a0a9e2e5bf4c749cc24239434.tar.gz
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.
-rw-r--r--Makefile.am23
1 files changed, 12 insertions, 11 deletions
diff --git a/Makefile.am b/Makefile.am
index a203c6c5..ed87082a 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -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