kbuild: Do not delete empty files in make distclean
authorMichal Marek <mmarek@suse.cz>
Wed, 10 Aug 2011 11:10:20 +0000 (13:10 +0200)
committerMichal Marek <mmarek@suse.cz>
Wed, 10 Aug 2011 11:16:49 +0000 (13:16 +0200)
Commit 3d64b44 introduced an empty file under
arch/arm/mach-zynq/board_dt.c. While this was not intended and the file
was removed from the tree by a later commit, we really should only match
junk files by known name patterns and not their size.

Reported-by: David Howells <dhowells@redhat.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Makefile

index b4ca4e111c9a4bc3e4c1c03e35eb532b5c31da93..d714838d0a3a995795688a50a44cfb48d169e964 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1198,7 +1198,7 @@ distclean: mrproper
        @find $(srctree) $(RCS_FIND_IGNORE) \
                \( -name '*.orig' -o -name '*.rej' -o -name '*~' \
                -o -name '*.bak' -o -name '#*#' -o -name '.*.orig' \
-               -o -name '.*.rej' -o -size 0 \
+               -o -name '.*.rej' \
                -o -name '*%' -o -name '.*.cmd' -o -name 'core' \) \
                -type f -print | xargs rm -f