aboutsummaryrefslogtreecommitdiff
path: root/maintainer-scripts
diff options
context:
space:
mode:
authorGerald Pfeifer <pfeifer@dbai.tuwien.ac.at>2001-08-06 15:03:21 +0200
committerGerald Pfeifer <gerald@gcc.gnu.org>2001-08-06 13:03:21 +0000
commitbba9ba9e250196571ae8ecd2893ce4cb25221189 (patch)
treee5cbd8e0bfc7fee898f8ba5640bfd47837a0d69f /maintainer-scripts
parentfe8112f8262b6e70782ca560e089e9cc5535dbdf (diff)
downloadgcc-bba9ba9e250196571ae8ecd2893ce4cb25221189.zip
gcc-bba9ba9e250196571ae8ecd2893ce4cb25221189.tar.gz
gcc-bba9ba9e250196571ae8ecd2893ce4cb25221189.tar.bz2
update_web_docs (PREPROCESS): Rename to WWWPREPROCESS.
* update_web_docs (PREPROCESS): Rename to WWWPREPROCESS. Preprocess the entire web site, not just the install docs. From-SVN: r44659
Diffstat (limited to 'maintainer-scripts')
-rw-r--r--maintainer-scripts/ChangeLog5
-rwxr-xr-xmaintainer-scripts/update_web_docs9
2 files changed, 9 insertions, 5 deletions
diff --git a/maintainer-scripts/ChangeLog b/maintainer-scripts/ChangeLog
index 9c07464..af8ea17 100644
--- a/maintainer-scripts/ChangeLog
+++ b/maintainer-scripts/ChangeLog
@@ -1,3 +1,8 @@
+2001-08-06 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
+
+ * update_web_docs (PREPROCESS): Rename to WWWPREPROCESS.
+ Preprocess the entire web site, not just the install docs.
+
2001-06-25 Phil Edwards <pme@sources.redhat.com>
* update_version: Add command-line argument capability, also
diff --git a/maintainer-scripts/update_web_docs b/maintainer-scripts/update_web_docs
index c9f8b6e..c39e0ad 100755
--- a/maintainer-scripts/update_web_docs
+++ b/maintainer-scripts/update_web_docs
@@ -8,7 +8,7 @@ PATH=/usr/local/bin:$PATH
WWWBASE=/www/gcc/htdocs
WWWBASE_PREFORMATTED=/www/gcc/htdocs-preformatted
-PREPROCESS=/www/gcc/bin/preprocess
+WWWPREPROCESS='/www/gcc/bin/preprocess -r'
# Process options -rrelease and -ddirectory
RELEASE=""
@@ -162,10 +162,9 @@ if [ "$RELEASE" = "HEAD" ]; then
export DESTDIR
$WORKDIR/gcc/gcc/doc/install.texi2html
- for file in `ls $DESTDIR`
- do
- $PREPROCESS install/$file
- done
+ # Preprocess the entire web site, not just the install docs!
+ echo "Invoking $WWWPREPROCESS"
+ $WWWPREPROCESS
fi
# Clean up behind us.