From 41459636afff85554062b3d063d81e7ee8598c26 Mon Sep 17 00:00:00 2001 From: vsr Date: Tue, 2 May 2006 11:25:31 +0000 Subject: [PATCH] Fix compilation bug: avoid errors when removing CVS folders --- 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 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 -- 2.39.2