diff options
author | gerald <gerald@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-08-30 21:56:42 +0000 |
---|---|---|
committer | gerald <gerald@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-08-30 21:56:42 +0000 |
commit | 590684a5b5e7ab0be26e5c33d39728404f92d3ea (patch) | |
tree | 6d58c980bfdcc179678db00c0ab83a81c8bcd9a8 /contrib | |
parent | 12290f6111766d1059b6196eef3a41cce0295c9d (diff) | |
download | gcc-590684a5b5e7ab0be26e5c33d39728404f92d3ea.tar.gz |
* gcc_update: Execute touch_files_reexec even if `cvs update`
failed.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36073 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/ChangeLog | 6 | ||||
-rwxr-xr-x | contrib/gcc_update | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/contrib/ChangeLog b/contrib/ChangeLog index c2a711d407c..c4f9d829e96 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,9 @@ +2000-08-30 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>, + Alexandre Oliva <aoliva@redhat.com> + + * gcc_update: Execute touch_files_reexec even if `cvs update` + failed. + 2000-08-09 Alexandre Oliva <aoliva@redhat.com> * test_summary: AWK breaks with filenames containing `='. diff --git a/contrib/gcc_update b/contrib/gcc_update index 486d9fe32f5..5f38d48239d 100755 --- a/contrib/gcc_update +++ b/contrib/gcc_update @@ -193,6 +193,7 @@ fi echo "Updating CVS tree" cvs -q update ${1+"$@"} if [ $? -ne 0 ]; then + (touch_files_reexec) echo "CVS update of full tree failed." >&2 exit 1 fi |