From bae42da4e6d97f02aef60993f7de5dd1106a7e75 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Wed, 25 Dec 2013 01:41:19 +0400 Subject: [PATCH] find . -delete find . ... -delete instead of find . ... | xargs rm -f --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d447bbc..f452a6f 100644 --- a/Makefile +++ b/Makefile @@ -5,4 +5,4 @@ distr: .PHONY: clean clean: - find . -name '*.py[co]' -print | xargs rm -f + find . -depth -type f -name '*.py[co]' -delete -- 2.39.2