From: vsr Date: Fri, 19 Sep 2008 05:17:30 +0000 (+0000) Subject: Fix 'make dist' procedure bugs X-Git-Tag: V5_1_0a1 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=b38ec8b861eec0db138856fe2854322696b4cd25;p=modules%2Fvisu.git Fix 'make dist' procedure bugs --- diff --git a/doc/salome/gui/VISU/Makefile.am b/doc/salome/gui/VISU/Makefile.am index 910bc8fe..32365da8 100644 --- a/doc/salome/gui/VISU/Makefile.am +++ b/doc/salome/gui/VISU/Makefile.am @@ -37,7 +37,7 @@ usr_docs: doxyfile_idl doxyfile docs: usr_docs clean-local: - @for filen in `find .` ; do \ + @for filen in `find . -maxdepth 1` ; do \ case $${filen} in \ ./Makefile | ./doxyfile | ./doxyfile_idl ) ;; \ . | .. ) ;; \ @@ -47,7 +47,7 @@ clean-local: install-data-local: usr_docs $(INSTALL) -d $(DESTDIR)$(docdir)/gui/VISU - @for filen in `find .` ; do \ + @for filen in `find . -maxdepth 1` ; do \ case $${filen} in \ ./Makefile | ./doxyfile | ./doxyfile_idl ) ;; \ ./doxyfile.bak | ./doxyfile_idl.bak ) ;; \