Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f78271df authored by Masahiro Yamada's avatar Masahiro Yamada
Browse files

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: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
parent 35288e30
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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