From 44b00a46a2e16a8de97ea8f39e5088f8d5329039 Mon Sep 17 00:00:00 2001 From: vsr Date: Mon, 29 May 2006 08:21:48 +0000 Subject: [PATCH] Fix 'make' procedure bug: avoid 'no such file or directory' error messages --- doc/salome/gui/Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.39.2