* Makefile.in (install-info): Prepend $(DESTDIR) to $(infodir).

This commit is contained in:
Eli Zaretskii 2004-01-21 18:44:52 +00:00
parent 877522dba4
commit 5843504f37
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2004-01-21 Eli Zaretskii <eliz@gnu.org>
* Makefile.in (install-info): Prepend $(DESTDIR) to $(infodir).
2004-01-19 Michael Chastain <mec.gnu@mindspring.com>
* gdbint.texinfo: Delete USE_MMALLOC, NO_MMCHECK, MMCHECK_FORCE,

View File

@ -171,8 +171,8 @@ install-info: $(INFO_DEPS)
@if $(SHELL) -c 'install-info --version | sed 1q | fgrep -s -v -i debian' >/dev/null 2>&1; then \
list='$(INFO_DEPS)'; \
for file in $$list; do \
echo " install-info --info-dir=$(infodir) $(DESTDIR)$(infodir)/$$file";\
install-info --info-dir=$(infodir) $(DESTDIR)$(infodir)/$$file || :;\
echo " install-info --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/$$file";\
install-info --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/$$file || :;\
done; \
else : ; fi