diff options
Diffstat (limited to 'maintainer-scripts')
-rw-r--r-- | maintainer-scripts/ChangeLog | 9 | ||||
-rwxr-xr-x | maintainer-scripts/gcc_release | 2 | ||||
-rwxr-xr-x | maintainer-scripts/update_web_docs_svn | 2 |
3 files changed, 12 insertions, 1 deletions
diff --git a/maintainer-scripts/ChangeLog b/maintainer-scripts/ChangeLog index a26e17c8ffd..c4559d6c8a5 100644 --- a/maintainer-scripts/ChangeLog +++ b/maintainer-scripts/ChangeLog @@ -1,3 +1,12 @@ +2007-08-21 Paul Brook <paul@codesourcery.com> + Nathan Sidwell <nathan@codesourcery.com> + Mark Mitchell <mark@codesourcery.com> + Joseph Myers <joseph@codesourcery.com> + + * gcc_release: Do not include copies of bugs.html in releases. + * update_web_docs_svn: Set VERSION_PACKAGE and BUGURL in + gcc-vers.texi. + 2007-07-06 Joseph Myers <joseph@codesourcery.com> * update_web_docs_svn: Use -o with makeinfo, texi2dvi and texi2pdf diff --git a/maintainer-scripts/gcc_release b/maintainer-scripts/gcc_release index 6549322b1c1..57f64d4bfc8 100755 --- a/maintainer-scripts/gcc_release +++ b/maintainer-scripts/gcc_release @@ -196,7 +196,7 @@ EOF # Obtain some documentation files from the wwwdocs module. inform "Retrieving HTML documentation" changedir "${WORKING_DIRECTORY}" - for x in bugs faq; do + for x in faq; do (${CVS} export -r HEAD wwwdocs/htdocs/${x}.html && \ cp ${WORKING_DIRECTORY}/wwwdocs/htdocs/${x}.html \ ${SOURCE_DIRECTORY}) || \ diff --git a/maintainer-scripts/update_web_docs_svn b/maintainer-scripts/update_web_docs_svn index b3ba2bd6b57..0fa9992b399 100755 --- a/maintainer-scripts/update_web_docs_svn +++ b/maintainer-scripts/update_web_docs_svn @@ -146,6 +146,8 @@ fi echo "@clear DEVELOPMENT" fi echo "@set srcdir $WORKDIR/gcc/gcc" + echo "@set VERSION_PACKAGE (GCC)" + echo "@set BUGURL @uref{http://gcc.gnu.org/bugs.html}" ) > $includedir/gcc-vers.texi # Now convert the relevant files from texi to HTML, PDF and PostScript. |