summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2008-09-25 16:34:42 -0700
committerH. Peter Anvin <hpa@zytor.com>2008-09-25 16:34:42 -0700
commit5c12206bf5c223df3f555c6c2b4aed06cfe357a1 (patch)
tree613a6a3c463c8357d4c026a6564b215be2c93215
parenta79db9318926d56de2fc1026910806a4c4534569 (diff)
downloadsyslinux-5c12206bf5c223df3f555c6c2b4aed06cfe357a1.tar.gz
com32/lib: fix "make clean" by proper parens for "find"
"-o" clauses bind looser than -print0, so we need parens. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
-rw-r--r--com32/lib/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/com32/lib/Makefile b/com32/lib/Makefile
index fec93ec7..dbca5b6d 100644
--- a/com32/lib/Makefile
+++ b/com32/lib/Makefile
@@ -110,7 +110,7 @@ libcom32.a : $(LIBOBJS)
tidy dist:
rm -f sys/vesa/alphatbl.c
- find . -name \*.o -o -name .\*.d -o -name \*.tmp -print0 | \
+ find . \( -name \*.o -o -name .\*.d -o -name \*.tmp \) -print0 | \
xargs -0r rm -f
clean: tidy