respect $(DESTDIR) as reported by Mike Russo via e-mail

SVN revision: 17060
This commit is contained in:
Mike Frysinger 2005-09-29 07:56:42 +00:00
parent 9af4e41c33
commit f6a74a24f7
1 changed files with 5 additions and 5 deletions

View File

@ -19,13 +19,13 @@ doc-build.stamp: doc-prepare.stamp
# rule to install the documentation in $(docdir)
install-data-local:
@if ! test -d $(datadir)/$(PACKAGE); then \
mkdir $(datadir)/$(PACKAGE); \
@if ! test -d "$(DESTDIR)$(datadir)/$(PACKAGE)"; then \
mkdir "$(DESTDIR)$(datadir)/$(PACKAGE)"; \
fi
@if ! test -d $(docdir); then \
mkdir $(docdir); \
@if ! test -d "$(DESTDIR)$(docdir)"; then \
mkdir "$(DESTDIR)$(docdir)"; \
fi
@cp -pr html/ man/ latex/ xml/ $(docdir)
@cp -pr html/ man/ latex/ xml/ "$(DESTDIR)$(docdir)"
# rule to uninstall the documentation
uninstall-local: