From: Brian Warner Date: Wed, 15 Aug 2007 22:28:12 +0000 (-0700) Subject: Makefile: use a different rm *.so command for the 'clean' target X-Git-Tag: allmydata-tahoe-0.5.0~6 X-Git-Url: https://git.rkrishnan.org/vdrive/%22news.html/index.php?a=commitdiff_plain;h=8088044bf3a7dc5d2fbebca26ee63d53adfd3050;p=tahoe-lafs%2Ftahoe-lafs.git Makefile: use a different rm *.so command for the 'clean' target --- diff --git a/Makefile b/Makefile index dc3fed48..d2978ae1 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 + rm -f `find src/allmydata -name '*.so'` install: cd src/zfec && python ./setup.py install && cd ../..