mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-11-15 10:08:35 +05:00
Fix problem of make distcheck on automake 1.11 (Mandriva 2010):
- we have to uninstall only the staff generated for tui doc files and nothing more
This commit is contained in:
parent
d3ac6cc474
commit
94e357bc36
@ -49,4 +49,13 @@ install-data-local:
|
||||
fi;
|
||||
|
||||
uninstall-local:
|
||||
rm -rf $(DESTDIR)$(docdir)/tui/GEOM
|
||||
@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 ) ;; \
|
||||
$(DESTDIR)$(tuidocdir)/geomscreen.png ) ;; \
|
||||
* ) echo "removing $${filen}" && rm -rf $${filen} ;; \
|
||||
esac ; \
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user