* config.sub (oabi): Recognize.
[official-gcc.git] / contrib / egcs_update
blob7a0f69e01f1776f9e5fc79f9dab29e1e38d6af46
1 #! /bin/sh
3 # Update a local CVS tree from the egcs repository, with an emphasis
4 # on treating generated files correctly, so that autoconf, bison et
5 # al are not required for the ``end'' user.
7 # By default all command-line options are passed to `cvs update` in
8 # addition to $UPDATE_OPTIONS (defined below). If the first parameter
9 # reads --nostdflags, $UPDATE_OPTIONS as well as this parameter itself
10 # are omitted.
12 # Examples:
14 # contrib/egcs_update -r egcs_latest_snapshot
15 # contrib/egcs_update -A
16 # contrib/egcs_update --nostdflags -P -r egcs_1_1_branch gcc/testsuite
19 # (C) 1998 Free Software Foundation
20 # Originally by Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>, August 1998.
22 # This script is Free Software, and it can be copied, distributed and
23 # modified as defined in the GNU General Public License. A copy of
24 # its license can be downloaded from http://www.gnu.org/copyleft/gpl.html
27 UPDATE_OPTIONS=-P
28 # Add -d to create any directories that exist in the repository but not
29 # locally.
30 # Add -A to reset any sticky tags, dates, or `-k' options.
33 echo "Current directory is `pwd`."
35 # First of all, check whether this indeed looks like a local CVS of egcs.
36 if [ ! -d CVS ] || [ ! -f gcc/version.c ]; then
37 echo "This does not seem to be an egcs CVS tree!"
38 exit
41 # Check command-line options
43 if [ x"${1}"x = x"--nostdflags"x ]; then
44 shift
45 else
46 set -- $UPDATE_OPTIONS ${1+"$@"}
50 echo "Pass 1: Updating autoconf and bison generated files"
51 # Do a CVS update on those files that exist in CVS directories. libg++
52 # makes sense to drop into the tree, but it isn't CVS-controlled.
53 X=`for i in \`find . -name configure.in -o -name '*.y'\`
55 D=\`dirname $i\`/CVS
56 if [ -f $i -a -d $D ]; then
57 echo $i
59 done`
60 cvs -q update $X
63 echo "Pass 2: Updating full tree"
64 cvs -q update ${1+"$@"}
66 echo "Pass 3: Fixing local tree"
67 # Please also update the FAQ accordingly if you change the list of
68 # files below. Note that generated files should be touched only
69 # after the corresponding *.y files.
70 touch `find . -name configure -print`
71 touch `find texinfo -name Makefile.in -print`
72 touch `find texinfo -name \*.pot -print`
73 touch `find texinfo -name \*.gmo -print`
74 for f in gcc/c-parse.y \
75 gcc/c-parse.h \
76 gcc/c-parse.c \
77 gcc/cstamp-h.in \
78 gcc/c-gperf.h \
79 gcc/cexp.c \
80 gcc/cp/parse.c \
81 gcc/cp/parse.h \
82 gcc/objc/objc-parse.y \
83 gcc/objc/objc-parse.c \
84 gcc/java/parse.h \
85 gcc/java/parse.c \
86 gcc/java/parse-scan.c \
87 libf2c/libU77/stamp-h.in \
88 contrib/fixinc/fixincl.x \
89 contrib/fixinc/inclhack.sh \
90 contrib/fixinc/fixincl.sh \
91 gcc/fixinc/fixincl.x \
92 gcc/fixinc/inclhack.sh \
93 gcc/fixinc/fixincl.sh
95 if [ -f $f ]; then
96 touch $f
98 done