* egcs_update: Do the pass 1 CVS update only for files that
may reasonably be under CVS control.
ChangeLog egcs_update
From-SVN: r22205
+Thu Sep 3 10:11:32 1998 Robert Lipe <robertl@dgii.com>
+
+ * egcs_update: Do the pass 1 CVS update only for files that
+ may reasonably be under CVS control.
+
1998-08-14 Alexandre Oliva <oliva@dcc.unicamp.br>
* test_installed: new script for testing already-installed
echo "Pass 1: Updating autoconf and bison generated files"
-find . -name configure.in -o -name '*.y' | xargs cvs -q update
+# Do a CVS update on those files that exist in CVS directories. libg++
+# makes sense to drop into the tree, but it isn't CVS-controlled.
+for i in `find . -name configure.in -o -name '*.y'`
+do
+ D=`dirname $i`/CVS
+ [ -f $i -a -d $D ] && echo $i
+done | xargs cvs -q update
+
echo "Pass 2: Updating full tree"
cvs -q update ${1+"$@"}