* egcs_update: Only touch files that already exist.
authorGerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
Tue, 1 Dec 1998 05:04:12 +0000 (06:04 +0100)
committerGerald Pfeifer <gerald@gcc.gnu.org>
Tue, 1 Dec 1998 05:04:12 +0000 (05:04 +0000)
From-SVN: r24023

contrib/ChangeLog
contrib/egcs_update

index 3ad3fa881279029c7b02b2414bbe09f7edef4497..98b7d0b6d76a7f91b09e3469c26783b9b31105db 100644 (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
index 79b84be1fe0ab7dceecf75eb8e4329cae7ff8a63..e689b2b8b6dc84ef7fba09e15ca08675c7925f13 100755 (executable)
@@ -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