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

doc/salome/tui/Makefile.am

index 5698ffa26af3d4b2e1273a6855a40ae0a1ab97f7..eb465301e02d76c4529d6ed3e053a8a167f623b0 100644 (file)
@@ -46,4 +46,12 @@ install-data-local:
        fi;
 
 uninstall-local:
-       -test -d $(DESTDIR)$(docdir)/tui/KERNEL && chmod -R +w $(DESTDIR)$(docdir)/tui/KERNEL && rm -rf $(DESTDIR)$(docdir)/tui/KERNEL
+       @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)/docutils ) ;; \
+           $(DESTDIR)$(tuidocdir)/head.png ) ;; \
+           * ) echo "removing $${filen}" && rm -rf $${filen} ;; \
+         esac ; \
+       done