Commit df7ad044 by Gerald Pfeifer Committed by Gerald Pfeifer

update_web_docs: Only update the install documentation for the CVS HEAD.

	* update_web_docs: Only update the install documentation for the
	CVS HEAD.

From-SVN: r43000
parent 7628e178
2001-06-08 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
* update_web_docs: Only update the install documentation for the
CVS HEAD.
2001-06-07 Joseph S. Myers <jsm28@cam.ac.uk> 2001-06-07 Joseph S. Myers <jsm28@cam.ac.uk>
* update_web_docs, doc_exclude: Check out files that may be in the * update_web_docs, doc_exclude: Check out files that may be in the
......
...@@ -154,17 +154,19 @@ if [ "$DO_THANKS_HTML" = y ]; then ...@@ -154,17 +154,19 @@ if [ "$DO_THANKS_HTML" = y ]; then
ln onlinedocs/${contrib_file}.gz thanks.html.gz ln onlinedocs/${contrib_file}.gz thanks.html.gz
fi fi
# Finally, generate the installation documentation. # Finally, generate the installation documentation (but only for CVS HEAD).
SOURCEDIR=$WORKDIR if [ "$RELEASE" = "HEAD" ]; then
DESTDIR=$WWWBASE_PREFORMATTED/install SOURCEDIR=$WORKDIR
export SOURCEDIR DESTDIR=$WWWBASE_PREFORMATTED/install
export DESTDIR export SOURCEDIR
$WORKDIR/gcc/gcc/doc/install.texi2html export DESTDIR
$WORKDIR/gcc/gcc/doc/install.texi2html
for file in `ls $DESTDIR`
do for file in `ls $DESTDIR`
$PREPROCESS install/$file do
done $PREPROCESS install/$file
done
fi
# Clean up behind us. # Clean up behind us.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment