From: vsr Date: Tue, 2 May 2006 11:25:31 +0000 (+0000) Subject: Fix compilation bug: avoid errors when removing CVS folders X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=41459636afff85554062b3d063d81e7ee8598c26;p=modules%2Fgui.git Fix compilation bug: avoid errors when removing CVS folders --- diff --git a/doc/salome/gui/Makefile.in b/doc/salome/gui/Makefile.in index ec67d8086..90f563c2a 100644 --- a/doc/salome/gui/Makefile.in +++ b/doc/salome/gui/Makefile.in @@ -16,7 +16,7 @@ VPATH=.:@srcdir@ docs: cp -fr $(srcdir)/KERNEL ./ - -find $(PWD) -name CVS -exec rm -rf {} \; + -find $(PWD) -name CVS -prune -exec rm -rf {} \; clean: rm -fr `ls | grep -v "Makefile"` @@ -27,7 +27,7 @@ distclean: clean install: mkdir -p $(docdir)/gui cp -rf KERNEL $(docdir)/gui - -find $(PWD) -name CVS -exec rm -rf {} \; + -find $(PWD) -name CVS -prune -exec rm -rf {} \; uninstall: rm -rf $(docdir)/gui/KERNEL