| 1 | #!/bin/sh
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 | # "sh update_web_docs_libstdcxx.sh"
|
|---|
| 5 | # Checks out a copy of the libstdc++-v3 "inner" documentation and puts
|
|---|
| 6 | # it in the onlinedocs area. For an initial description of "inner"
|
|---|
| 7 | # docs, see the thread starting with
|
|---|
| 8 | # http://gcc.gnu.org/ml/libstdc++/2000-11/msg00475.html
|
|---|
| 9 | #
|
|---|
| 10 | # Id: update_v3_web_docs.sh,v 1.4 2000/12/25 05:02:14 pedwards Exp
|
|---|
| 11 | #####################################################################
|
|---|
| 12 |
|
|---|
| 13 | CVSROOT=/cvs/gcc
|
|---|
| 14 | GETTHIS='gcc/libstdc++-v3/docs/html'
|
|---|
| 15 | WWWDIR=/www/gcc/htdocs/onlinedocs/libstdc++
|
|---|
| 16 | #WWWDIR=/tmp/fake-onlinedocs-testing
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 | ## No more changes should be needed. Ha, right, whatever.
|
|---|
| 20 | #####################################################################
|
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 | PATH=/usr/local/bin:$PATH
|
|---|
| 24 | export CVSROOT
|
|---|
| 25 |
|
|---|
| 26 | test -d $WWWDIR || /bin/mkdir $WWWDIR
|
|---|
| 27 | test -d $WWWDIR || { echo something is very wrong ; exit 1; }
|
|---|
| 28 |
|
|---|
|
|---|