From a0b48c83548c527cdb513315e14f6b342d586055 Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Tue, 14 Aug 2007 14:24:48 -0700 Subject: [PATCH] Makefile: fix 'clean' target to work even if there's nothing to clean --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index acba601b..5e5c465d 100644 --- a/Makefile +++ b/Makefile @@ -206,7 +206,7 @@ clean: clean-zfec clean-foolscap rm -rf build rm -f debian rm -rf instdir - find src/allmydata -name '*.so' -print0 |xargs -0 rm + -find src/allmydata -name '*.so' -print0 |xargs -0 -r rm install: cd src/zfec && python ./setup.py install && cd ../.. -- 2.45.2