]> git.ipfire.org Git - thirdparty/gcc.git/blame - maintainer-scripts/update_web_docs_libstdcxx_svn
Makefile.in (s-mlib): Only pass MULTIARCH_DIRNAME if MULTILIB_OSDIRNAMES is not defined.
[thirdparty/gcc.git] / maintainer-scripts / update_web_docs_libstdcxx_svn
CommitLineData
3de4c38d 1#!/bin/bash
7f52714a
DB
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
13SVNROOT=${SVNROOT:-"file:///svn/gcc"}
013d0fea 14GETTHIS='libstdc++-v3/doc/html'
7f52714a
DB
15WWWDIR=/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
23PATH=/usr/local/bin:$PATH
24export SVNROOT
25
26test -d $WWWDIR || /bin/mkdir $WWWDIR
27test -d $WWWDIR || { echo something is very wrong ; exit 1; }
28
29WORKDIR=/tmp/v3-doc-update.$$
30/bin/rm -rf $WORKDIR
31/bin/mkdir $WORKDIR
32cd $WORKDIR
33
34
35# checkout all the HTML files, get down into an interesting directory
013d0fea
JW
36svn -q export $SVNROOT/trunk/$GETTHIS doc
37cd doc
7f52714a
DB
38rm -f Makefile
39
7f52714a
DB
40# copy the tree to the onlinedocs area, preserve directory structure
41#find . -depth -print | cpio -pdv $WWWDIR
3de4c38d
GP
42find . -depth -print | cpio -pd $WWWDIR 2>&1 | grep -v "newer or same age version exists"
43
44err=${PIPESTATUS[1]}
45if [ $err -gt 0 ]; then
46 printf "\nCopying failed with error code %d.\n" $err
47fi
7f52714a
DB
48
49cd /
50/bin/rm -rf $WORKDIR
51