Makefile: use a different rm *.so command for the 'clean' target

This commit is contained in:
Brian Warner 2007-08-15 15:28:12 -07:00
parent 938dd97e63
commit 8088044bf3

View File

@ -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 ../..