summaryrefslogtreecommitdiff
path: root/maintainer-scripts
diff options
context:
space:
mode:
authorgerald <gerald@138bc75d-0d04-0410-961f-82ee72b054a4>2007-10-01 06:21:10 +0000
committergerald <gerald@138bc75d-0d04-0410-961f-82ee72b054a4>2007-10-01 06:21:10 +0000
commite9ff4c5ecf396c7de548621026a674e239e97713 (patch)
treec1bd8e0b6ec01f6e74d8d582629bd42f99b5e348 /maintainer-scripts
parent120a0e58e0909d7ea1ecc5275b0bbea475ef484c (diff)
downloadgcc-e9ff4c5ecf396c7de548621026a674e239e97713.tar.gz
* gcc_release: Do not include copies of faq.html in releases,
and remove all the explicit support code to pull in web pages. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@128901 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'maintainer-scripts')
-rw-r--r--maintainer-scripts/ChangeLog5
-rwxr-xr-xmaintainer-scripts/gcc_release20
2 files changed, 5 insertions, 20 deletions
diff --git a/maintainer-scripts/ChangeLog b/maintainer-scripts/ChangeLog
index c4559d6c8a5..37f757c8a64 100644
--- a/maintainer-scripts/ChangeLog
+++ b/maintainer-scripts/ChangeLog
@@ -1,3 +1,8 @@
+2007-10-01 Gerald Pfeifer <gerald@pfeifer.com>
+
+ * gcc_release: Do not include copies of faq.html in releases,
+ and remove all the explicit support code to pull in web pages.
+
2007-08-21 Paul Brook <paul@codesourcery.com>
Nathan Sidwell <nathan@codesourcery.com>
Mark Mitchell <mark@codesourcery.com>
diff --git a/maintainer-scripts/gcc_release b/maintainer-scripts/gcc_release
index 57f64d4bfc8..a5d14cdf724 100755
--- a/maintainer-scripts/gcc_release
+++ b/maintainer-scripts/gcc_release
@@ -193,26 +193,6 @@ EOF
contrib/gcc_update --touch
echo "Obtained from SVN: ${SVNBRANCH} revision ${SVNREV}" > LAST_UPDATED
- # Obtain some documentation files from the wwwdocs module.
- inform "Retrieving HTML documentation"
- changedir "${WORKING_DIRECTORY}"
- for x in faq; do
- (${CVS} export -r HEAD wwwdocs/htdocs/${x}.html && \
- cp ${WORKING_DIRECTORY}/wwwdocs/htdocs/${x}.html \
- ${SOURCE_DIRECTORY}) || \
- error "Could not retrieve ${x}.html"
- done
-
- inform "Generating plain-text documentation from HTML"
- changedir "${SOURCE_DIRECTORY}"
- for file in *.html; do
- newfile=`echo $file | sed -e 's/.html//' | tr "[:lower:]" "[:upper:]"`
- (${ENV} TERM=vt100 lynx -dump $file \
- | sed -e "s#file://localhost`/bin/pwd`\(.*\)#http://gcc.gnu.org\1#g" \
- > $newfile) || \
- error "Could not generate text-only version of ${file}"
- done
-
# For a prerelease or real release, we need to generate additional
# files not present in SVN.
changedir "${SOURCE_DIRECTORY}"