diff options
author | Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at> | 2003-06-27 21:29:01 +0200 |
---|---|---|
committer | Gerald Pfeifer <gerald@gcc.gnu.org> | 2003-06-27 19:29:01 +0000 |
commit | 36067e59cdda73fa627631a4268c3fc348f3f846 (patch) | |
tree | caa6e87b381e7512102a20512364054cea385e43 /maintainer-scripts | |
parent | f1a22109ec794a723721cb437ed29e7d23ee9a3e (diff) | |
download | gcc-36067e59cdda73fa627631a4268c3fc348f3f846.zip gcc-36067e59cdda73fa627631a4268c3fc348f3f846.tar.gz gcc-36067e59cdda73fa627631a4268c3fc348f3f846.tar.bz2 |
gcc_release (build_sources): Do not include gnats.html any longer.
* gcc_release (build_sources): Do not include gnats.html any longer.
Make an error message more descriptive.
From-SVN: r68597
Diffstat (limited to 'maintainer-scripts')
-rw-r--r-- | maintainer-scripts/ChangeLog | 5 | ||||
-rwxr-xr-x | maintainer-scripts/gcc_release | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/maintainer-scripts/ChangeLog b/maintainer-scripts/ChangeLog index f897e22..054c8a8 100644 --- a/maintainer-scripts/ChangeLog +++ b/maintainer-scripts/ChangeLog @@ -1,3 +1,8 @@ +2003-06-27 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at> + + * gcc_release (build_sources): Do not include gnats.html any longer. + Make an error message more descriptive. + 2003-06-25 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at> * gcc_release: Factor the updating of links and READMEs on the diff --git a/maintainer-scripts/gcc_release b/maintainer-scripts/gcc_release index 41fb7fe..5e29309 100755 --- a/maintainer-scripts/gcc_release +++ b/maintainer-scripts/gcc_release @@ -178,7 +178,7 @@ EOF # Obtain some documentation files from the wwwdocs module. inform "Retrieving HTML documentation" changedir "${WORKING_DIRECTORY}" - for x in bugs gnats faq; do + for x in bugs faq; do (${CVS} export -r HEAD wwwdocs/htdocs/${x}.html && \ cp ${WORKING_DIRECTORY}/wwwdocs/htdocs/${x}.html \ ${SOURCE_DIRECTORY}) || \ @@ -192,7 +192,7 @@ EOF (${ENV} TERM=vt100 lynx -dump $file \ | sed -e "s#file://localhost`/bin/pwd`\(.*\)#http://gcc.gnu.org\1#g" \ > $newfile) || \ - error "Could not regenerate documentation" + error "Could not generate text-only version of ${file}" done # For a prerelease or real release, we need to generate additional |