fix cleanup maker
why: embedded find needs brackets around or condition
This commit is contained in:
parent
cb957b71e4
commit
6d2b7ad6da
|
@ -194,7 +194,7 @@ clean-docs:
|
||||||
.SILENT: clean-bakfiles
|
.SILENT: clean-bakfiles
|
||||||
clean-bakfiles:
|
clean-bakfiles:
|
||||||
for f in $(shell find . -type f \
|
for f in $(shell find . -type f \
|
||||||
-name '*~' -o -name '*.bak' -print); do \
|
\( -name '*~' -o -name '*.bak' \) -print); do \
|
||||||
(set -x; rm -f "$$f"); \
|
(set -x; rm -f "$$f"); \
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue