correction of "not to remove CVS directory by cleaning if building in GEOM_SRC"

This commit is contained in:
eap 2011-03-02 08:45:15 +00:00
parent 52795b31b9
commit 0f74641d7b

View File

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