aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2017-01-22 09:02:32 -0500
committerMasahiro Yamada <yamada.masahiro@socionext.com>2017-03-14 12:26:41 -0400
commitf78271dfb77353c4d045f9735deebe21839fb2ed (patch)
treee59b09cfa4bcf48064404585b1d55f946fd0ba80
parent35288e30ebca59effbd44c5976afc71a342e9a85 (diff)
kbuild: drop unneeded patterns '.*.orig' and '.*.rej' from distclean
The patterns '.*.orig' and '.*.rej' are cleaned away by '*.orig' and '*.rej' seen two lines above. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index faa9d263cfe3..515aeea7e702 100644
--- a/Makefile
+++ b/Makefile
@@ -1315,8 +1315,8 @@ PHONY += distclean
1315distclean: mrproper 1315distclean: mrproper
1316 @find $(srctree) $(RCS_FIND_IGNORE) \ 1316 @find $(srctree) $(RCS_FIND_IGNORE) \
1317 \( -name '*.orig' -o -name '*.rej' -o -name '*~' \ 1317 \( -name '*.orig' -o -name '*.rej' -o -name '*~' \
1318 -o -name '*.bak' -o -name '#*#' -o -name '.*.orig' \ 1318 -o -name '*.bak' -o -name '#*#' -o -name '*%' \
1319 -o -name '.*.rej' -o -name '*%' -o -name 'core' \) \ 1319 -o -name 'core' \) \
1320 -type f -print | xargs rm -f 1320 -type f -print | xargs rm -f
1321 1321
1322 1322