source:
trunk/src/gcc/maintainer-scripts/update_web_docs_old@
747
| Last change on this file since 747 was 2, checked in by , 23 years ago | |
|---|---|
|
|
| File size: 4.5 KB | |
| Line | |
|---|---|
| 1 | #!/bin/sh -x |
| 2 | |
| 3 | # Generate HTML documentation from GCC Texinfo docs. |
| 4 | # This version is for GCC 3.0.x and earlier versions. |
| 5 | |
| 6 | # Run this from /tmp. |
| 7 | CVSROOT=/cvs/gcc |
| 8 | export CVSROOT |
| 9 | |
| 10 | PATH=/usr/local/bin:$PATH |
| 11 | |
| 12 | WWWBASE=/www/gcc/htdocs |
| 13 | WWWBASE_PREFORMATTED=/www/gcc/htdocs-preformatted |
| 14 | WWWPREPROCESS='/www/gcc/bin/preprocess -r' |
| 15 | |
| 16 | # Process options -rrelease and -ddirectory |
| 17 | RELEASE="" |
| 18 | SUBDIR="" |
| 19 | |
| 20 | while [ $# -gt 0 ]; do |
| 21 | case $1 in |
| 22 | -r*) |
| 23 | if [ -n "$RELEASE" ]; then |
