fix cleanup maker

why:
  embedded find needs brackets around or condition
This commit is contained in:
Jordan Hrycaj 2021-03-30 16:26:35 +01:00
parent cb957b71e4
commit 6d2b7ad6da
No known key found for this signature in database
GPG Key ID: 4101B9BC5A0DB080
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ clean-docs:
.SILENT: clean-bakfiles
clean-bakfiles:
for f in $(shell find . -type f \
-name '*~' -o -name '*.bak' -print); do \
\( -name '*~' -o -name '*.bak' \) -print); do \
(set -x; rm -f "$$f"); \
done