From: vsr Date: Mon, 29 May 2006 08:20:31 +0000 (+0000) Subject: Fix 'make' procedure bug: avoid 'no such file or directory' error messages X-Git-Tag: V3_2_0rc~3 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=c057fb21e1e31c04fb8b3ab01cb1f374f029623f;p=modules%2Fsuperv.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 fa19b1b..6661cdc 100644 --- a/doc/salome/gui/Makefile.in +++ b/doc/salome/gui/Makefile.in @@ -16,7 +16,7 @@ VPATH=.:@srcdir@ docs: cp -fr $(srcdir)/SUPERV ./ - -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 SUPERV $(docdir)/gui - -find $(PWD) -name CVS -exec rm -rf {} \; + -find $(PWD) -name CVS -prune -exec rm -rf {} \; uninstall: rm -rf $(docdir)/gui/SUPERV