mirror of
git://git.sv.gnu.org/findutils.git
synced 2026-01-29 04:53:21 +01:00
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:
23
Makefile.am
23
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
|
||||
|
||||
Reference in New Issue
Block a user