This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
3.1 PATCH: Fix libstdc++-v3 install.html path
- From: Rainer Orth <ro at TechFak dot Uni-Bielefeld dot DE>
- To: gcc-patches at gcc dot gnu dot org
- Cc: Mark Mitchell <mark at codesourcery dot com>, libstdc++ at gcc dot gnu dot org
- Date: Thu, 2 May 2002 23:51:52 +0200 (MEST)
- Subject: 3.1 PATCH: Fix libstdc++-v3 install.html path
I just noticed that the libstdc++-v3 configure emits wrong path names for
the local install.html and configopts.html files:
faster => $srcdir/libstdc++-v3/docs/install.html
faster => $srcdir/libstdc++-v3/docs/configopts.html
while the files now reside in docs/html. The following patch (tested only
by visual inspection) fixes this.
Ok for branch and mainline?
Rainer
Thu May 2 21:31:04 2002 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* configure.in: Update local install.html, configopts.html paths.
* configure: Regenerate.
Index: configure.in
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/configure.in,v
retrieving revision 1.83.2.3
diff -u -p -r1.83.2.3 configure.in
--- configure.in 25 Mar 2002 21:02:06 -0000 1.83.2.3
+++ configure.in 2 May 2002 21:50:57 -0000
@@ -372,11 +372,11 @@ if test ! -f stamp-sanity-warned; then
touch stamp-sanity-warned
echo ""
echo "Please make certain that you read the installation information here:"
- echo " faster => ${srcdir}/docs/install.html"
+ echo " faster => ${srcdir}/docs/html/install.html"
echo " slower => <URL:http://gcc.gnu.org/onlinedocs/libstdc++/install.html>"
echo ""
echo "and the configuration information here:"
- echo " faster => ${srcdir}/docs/configopts.html"
+ echo " faster => ${srcdir}/docs/html/configopts.html"
echo " slower => <URL:http://gcc.gnu.org/onlinedocs/libstdc++/configopts.html>"
echo ""
echo "before proceeding with ${_cv_gnu_make_command}."