summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author"Steven J. Hill" <sjhill@realitydiluted.com>2005-10-07 01:42:24 +0000
committer"Steven J. Hill" <sjhill@realitydiluted.com>2005-10-07 01:42:24 +0000
commite9318574fecb1f861bb0a321a96c3b55f3b331ee (patch)
tree6a6b7c9e72f29c8abfa93a68588ab9e61c135851
parent21ed78b72c98f37c3fbc50465860e7ac817daece (diff)
downloaduClibc-alpine-e9318574fecb1f861bb0a321a96c3b55f3b331ee.tar.bz2
uClibc-alpine-e9318574fecb1f861bb0a321a96c3b55f3b331ee.tar.xz
Sync with trunk.
-rw-r--r--Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0dd54c593..b0a557e48 100644
--- a/Makefile
+++ b/Makefile
@@ -370,8 +370,7 @@ clean:
@if [ -d libc/sysdeps/linux/$(TARGET_ARCH) ]; then \
$(MAKE) -C libc/sysdeps/linux/$(TARGET_ARCH) clean; \
fi
- -find . -name \*.o -exec $(RM) {} \;
- -find . -name \*.os -exec $(RM) {} \;
+ -find . \( -name \*.o -o -name \*.os \) -exec $(RM) {} \;
distclean: clean
-find . \( -name core -o -name \*.orig -o -name \*~ -o -name .\#\* \) -exec $(RM) {} \;