From 938dd97e63dc5c6164f824595967b3333be60872 Mon Sep 17 00:00:00 2001
From: Zooko O'Whielacronx <zooko@zooko.com>
Date: Wed, 15 Aug 2007 14:18:51 -0700
Subject: [PATCH] Makefile: more portable way to make clean succeed when
 there's nothing to rm xargs doesn't have a "-r" option on Mac OS X.

---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 5e5c465d..dc3fed48 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 -r rm
+	-@find src/allmydata -name '*.so' -print0 |xargs -0 rm
 
 install: 
 	cd src/zfec && python ./setup.py install && cd ../..
-- 
2.45.2