bug-texinfo
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

(no subject)


From: Peter Breitenlohner
Subject: (no subject)
Date: Mon, 25 Sep 2000 16:38:22 +0200 (CEST)

Hi,

to make things work I had to apply the attached patch.
Of course, what should really be patched is Makefile.am and not Makefile.in,
I was just too lazy to do that.

regards
Peter Breitenlohner <address@hidden>
diff -ur texinfo-4.0.orig/doc/Makefile.in texinfo-4.0/doc/Makefile.in
--- texinfo-4.0.orig/doc/Makefile.in    Tue Sep 28 21:40:56 1999
+++ texinfo-4.0/doc/Makefile.in Mon Sep 25 16:15:06 2000
@@ -463,21 +463,21 @@
 # Similarly, Do not try to install the info files from $(srcdir).
 install-info-am: $(INFO_DEPS)
        @$(NORMAL_INSTALL)
-       $(mkinstalldirs) $(infodir)
+       $(mkinstalldirs) $(DESTDIR)$(infodir)
        @for file in $(INFO_DEPS); do \
          d=.; \
          for ifile in `cd $$d && echo $$file $$file-[0-9] $$file-[0-9][0-9]`; 
do \
            if test -f $$d/$$ifile; then \
-             echo " $(INSTALL_DATA) $$d/$$ifile $(infodir)/$$ifile"; \
-             $(INSTALL_DATA) $$d/$$ifile $(infodir)/$$ifile; \
+             echo " $(INSTALL_DATA) $$d/$$ifile $(DESTDIR)$(infodir)/$$ifile"; 
\
+             $(INSTALL_DATA) $$d/$$ifile $(DESTDIR)$(infodir)/$$ifile; \
            else : ; fi; \
          done; \
        done
        @$(POST_INSTALL)
        @if $(SHELL) -c '$(INSTALL_INFO) --version | sed 1q | fgrep -s -v -i 
debian' >/dev/null 2>&1; then \
          for file in $(INFO_DEPS); do \
-           echo " $(INSTALL_INFO) --info-dir=$(infodir) $(infodir)/$$file";\
-           $(INSTALL_INFO) --info-dir=$(infodir) $(infodir)/$$file || :;\
+           echo " $(INSTALL_INFO) --info-dir=$(DESTDIR)$(infodir) 
$(DESTDIR)$(infodir)/$$file";\
+           $(INSTALL_INFO) --info-dir=$(DESTDIR)$(infodir) 
$(DESTDIR)$(infodir)/$$file || :;\
          done; \
        else : ; fi
 

reply via email to

[Prev in Thread] Current Thread [Next in Thread]