* egcs_update: Only touch files that already exist.

From-SVN: r24023
This commit is contained in:
Gerald Pfeifer 1998-12-01 06:04:12 +01:00 committed by Gerald Pfeifer
parent 3c3d82352e
commit 5eff2ed5e2
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,7 @@
1998-11-30 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
* egcs_update: Only touch files that already exist.
1998-11-29 Alexandre Oliva <oliva@dcc.unicamp.br>
* test_summary (EOF): remove double backslash

View File

@ -88,5 +88,7 @@ for f in gcc/c-parse.y \
gcc/fixinc/inclhack.sh \
gcc/fixinc/fixincl.sh
do
touch $f
if [ -f $f ]; then
touch $f
fi
done