not to remove CVS directory by cleaning if building in GEOM_SRC

This commit is contained in:
eap 2011-03-02 08:40:58 +00:00
parent ed0abf252d
commit 52795b31b9

View File

@ -56,7 +56,7 @@ clean-local:
@for filen in `find . -maxdepth 1` ; do \
case $${filen} in \
./Makefile* | ./doxyfile* | ./images | ./input | ./static ) ;; \
. | .. ) ;; \
. | .. | CVS ) ;; \
*) echo "Removing $${filen}" ; rm -rf $${filen} ;; \
esac ; \
done ;