From a6f4eb09560332321c7db7e52735aa3fb3f2af44 Mon Sep 17 00:00:00 2001 From: Blue Swirl Date: Sat, 22 May 2010 13:34:08 +0000 Subject: [PATCH] Fix find expression in clean target Signed-off-by: Blue Swirl git-svn-id: svn://coreboot.org/openbios/trunk/openbios-devel@773 f158a5a8-5612-0410-a976-696ce0be7e32 --- Makefile.target | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.target b/Makefile.target index aa45120..8a706b2 100644 --- a/Makefile.target +++ b/Makefile.target @@ -62,7 +62,7 @@ info: clean: @printf "Cleaning up for $(ARCH)..." @rm -rf forth.dict.core forthstrap *.dict openbios-* - @find . -type f -name "*~" -o -name '*.o' -o -name '*.a' -exec rm \{\} \; + @find . -type f \( -name "*~" -o -name '*.o' -o -name '*.a' \) -exec rm \{\} \; @echo " ok" build-verbose: info build