diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-07-31 03:45:05 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-07-31 03:45:05 +0000 |
commit | 87715170ccb9c3ffda13b621385832a9103913ec (patch) | |
tree | b49e6be193dae1337f1ec385c63051351139141a /Makefile | |
parent | b230159958fd527dafb21aa5b157a928e46ee181 (diff) | |
download | busybox-87715170ccb9c3ffda13b621385832a9103913ec.tar.gz |
Be more portable with 'find' for those that prefer programming
on *BSD, etc. Formatting fixes, etc.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -221,10 +221,10 @@ clean: - rm -f busybox busybox.links libbb/loop.h .config.old .hdepend - rm -f scripts/split-include scripts/mkdep .*config.log - rm -rf include/config include/config.h - - find -name .\*.flags -exec rm -f {} \; - - find -name .depend -exec rm -f {} \; - - find -name \*.o -exec rm -f {} \; - - find -name \*.a -exec rm -f {} \; + - find . -name .\*.flags -exec rm -f {} \; + - find . -name .depend -exec rm -f {} \; + - find . -name \*.o -exec rm -f {} \; + - find . -name \*.a -exec rm -f {} \; distclean: clean - rm -f busybox |