projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
35288e3
)
kbuild: drop unneeded patterns '.*.orig' and '.*.rej' from distclean
author
Masahiro Yamada
<yamada.masahiro@socionext.com>
Sun, 22 Jan 2017 14:02:32 +0000
(23:02 +0900)
committer
Masahiro Yamada
<yamada.masahiro@socionext.com>
Tue, 14 Mar 2017 16:26:41 +0000
(
01:26
+0900)
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>
Makefile
patch
|
blob
|
blame
|
history
diff --git
a/Makefile
b/Makefile
index faa9d263cfe3c8dcb136aa33d17165638cffc09e..515aeea7e70293d6e0050ded4d30e7873e9c35d3 100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-1315,8
+1315,8
@@
PHONY += distclean
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 -name '*%' -o -name '
core' \) \
+ -o -name '*.bak' -o -name '#*#' -o -name '
*%
' \
+ -o -name 'core' \) \
-type f -print | xargs rm -f