From 2bb7528878c9571d629208d18acf338f2e7b2839 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Tue, 25 Jun 2019 08:58:35 +0200 Subject: build: avoid unnecessary call to xargs Signed-off-by: Jan Engelhardt Signed-off-by: Pablo Neira Ayuso --- py/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/Makefile.am b/py/Makefile.am index 5f4e1f6f..215ecd9e 100644 --- a/py/Makefile.am +++ b/py/Makefile.am @@ -22,7 +22,7 @@ clean-local: $(PYTHON_BIN) setup.py clean \ --build-base $(abs_builddir) rm -rf scripts-* lib* build dist bdist.* nftables.egg-info - find . -name \*.pyc -print0 | xargs -0 rm -f + find . -name \*.pyc -delete distclean-local: rm -f version -- cgit v1.2.3