]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
Fix problem of make distcheck on automake 1.11 (Mandriva 2010):
authorvsr <vsr@opencascade.com>
Wed, 18 Apr 2012 08:03:31 +0000 (08:03 +0000)
committervsr <vsr@opencascade.com>
Wed, 18 Apr 2012 08:03:31 +0000 (08:03 +0000)
- we have to uninstall only the staff generated for tui doc files and nothing more

doc/salome/tui/Makefile.am

index 6099153cce0ea9a01c9524b1b7b27d4b7641bfe8..9725980e0bd5b0f57d2bfac9afa6337ec376aa86 100644 (file)
@@ -45,4 +45,11 @@ install-data-local:
        fi;
 
 uninstall-local:
-       rm -rf $(DESTDIR)$(docdir)/tui/GUI
+       @test -d $(DESTDIR)$(tuidocdir) && chmod -R +w $(DESTDIR)$(tuidocdir) ; \
+       for filen in `find $(DESTDIR)$(tuidocdir) -mindepth 1 -maxdepth 1` dummy ; do \
+         case $${filen} in \
+           dummy ) ;; \
+           $(DESTDIR)$(tuidocdir)/head.png ) ;; \
+           * ) echo "removing $${filen}" && rm -rf $${filen} ;; \
+         esac ; \
+       done