From 36ec95c4d60f400a0a9e2e5bf4c749cc24239434 Mon Sep 17 00:00:00 2001 From: Bernhard Voelker Date: Sun, 24 Apr 2022 13:37:00 +0200 Subject: [PATCH 1/2] 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. --- Makefile.am | 23 ++++++++++++----------- 1 file 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 -- 2.36.0