* egcs_update: Do not use xargs, but a backquote construct.

From-SVN: r24766
This commit is contained in:
Gerald Pfeifer 1999-01-19 13:10:12 +01:00 committed by Gerald Pfeifer
parent 747215f1fe
commit 3243be289f
2 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,7 @@
1999-01-19 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
* egcs_update: Do not use xargs, but a backquote construct.
1999-01-07 Alexandre Oliva <oliva@dcc.unicamp.br>
* test_summary (version): remove carriage return that gawk inserts

View File

@ -50,11 +50,12 @@ fi
echo "Pass 1: Updating autoconf and bison generated files"
# 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'`
X=`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
D=\`dirname $i\`/CVS
[ -f $i -a -d $D ] && echo $i
done`
cvs -q update $X
echo "Pass 2: Updating full tree"