From c057fb21e1e31c04fb8b3ab01cb1f374f029623f Mon Sep 17 00:00:00 2001 From: vsr Date: Mon, 29 May 2006 08:20:31 +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 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 -- 2.39.2