This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Restore install-html and install-pdf targets in libstdc++-v3


"make install-html" and "make install-pdf" are currently broken at
toplevel for trunk and 4.3 because libstdc++-v3 lacks these targets.
They were added by

r122448 | brooks | 2007-03-01 23:59:35 +0000 (Thu, 01 Mar 2007) | 3 lines

* Makefile.am: Add dummy install-pdf target.
* Makefile.in: Regenerate

r114134 | carlos | 2006-05-26 14:57:45 +0000 (Fri, 26 May 2006) | 7 lines

        * Makefile.am: Add install-html target. Add install-html to .PHONY
        * Makefile.in: Regenerate.

and removed, I presume accidentally, by

r131625 | bkoz | 2008-01-18 08:16:51 +0000 (Fri, 18 Jan 2008) | 92 lines

which is a regression from 4.2 where install-html targets were present
everywhere.  OK to commit this patch to restore them?

If the libstdc++ maintainers wish to replace the dummy rules by proper
rules that actually install the documentation, that would be great,
but not suitable for 4.3 branch in the case of install-pdf given the
extra software required to build PDF from the shipped documentation
(which should be documented in gcc/doc/install.texi).

2008-04-29  Joseph Myers  <joseph@codesourcery.com>

	* Makefile.am (install-html, install-pdf): Add dummy targets.
	* Makefile.in: Regenerate.

Index: libstdc++-v3/Makefile.am
===================================================================
--- libstdc++-v3/Makefile.am	(revision 134791)
+++ libstdc++-v3/Makefile.am	(working copy)
@@ -89,3 +89,7 @@
 
 # Subdir rules rely on $(FLAGS_TO_PASS)
 FLAGS_TO_PASS = $(AM_MAKEFLAGS)
+
+.PHONY: install-html install-pdf
+install-html:
+install-pdf:

-- 
Joseph S. Myers
joseph@codesourcery.com


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]