From: vsr Date: Mon, 29 May 2006 08:21:48 +0000 (+0000) Subject: Fix 'make' procedure bug: avoid 'no such file or directory' error messages X-Git-Tag: V3_2_0rc~2 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=44b00a46a2e16a8de97ea8f39e5088f8d5329039;p=modules%2Fvisu.git Fix 'make' procedure bug: avoid 'no such file or directory' error messages --- diff --git a/doc/salome/gui/Makefile.in b/doc/salome/gui/Makefile.in index c8e9872e..3f3617cc 100644 --- a/doc/salome/gui/Makefile.in +++ b/doc/salome/gui/Makefile.in @@ -16,7 +16,7 @@ VPATH=.:@srcdir@ docs: cp -fr $(srcdir)/VISU ./ - -find $(PWD) -name CVS -exec rm -rf {} \; + -find $(PWD) -name CVS -prune -exec rm -rf {} \; usr_docs: docs @@ -29,7 +29,7 @@ distclean: clean install: mkdir -p $(docdir)/gui cp -rf VISU $(docdir)/gui - -find $(PWD) -name CVS -exec rm -rf {} \; + -find $(PWD) -name CVS -prune -exec rm -rf {} \; uninstall: rm -rf $(docdir)/gui/VISU