Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [RFA] Fix "make install" for Info files
@ 2004-01-21 11:30 Eli Zaretskii
  2004-01-21 15:16 ` Daniel Jacobowitz
  0 siblings, 1 reply; 3+ messages in thread
From: Eli Zaretskii @ 2004-01-21 11:30 UTC (permalink / raw)
  To: gdb-patches

The change below is required for "make install" to DTRT when running
`install-info' after installing the Info files, in case DESTDIR is
set to something other than the empty string.

Okay to commit?  I'd say it's ob-ish (and bfd/doc/Makefile.in does it
exactly as I did below), but...

2004-01-21  Eli Zaretskii  <eliz@elta.co.il>

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

--- gdb/doc/Makefile.i~0	2003-08-08 17:30:36.000000000 +0200
+++ gdb/doc/Makefile.in	2004-01-21 12:06:44.000000000 +0200
@@ -171,8 +171,8 @@
 	@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
 


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2004-01-21 18:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-01-21 11:30 [RFA] Fix "make install" for Info files Eli Zaretskii
2004-01-21 15:16 ` Daniel Jacobowitz
2004-01-21 18:48   ` Eli Zaretskii

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox