This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

gcc_update: Only output one line for LAST_UPDATED


Seems rather obvious as currently LAST_UPDATED ends up like:

Mon Nov  7 19:05:11 EST 2005
Tue Nov  8 00:05:11 UTC 2005 (revision 106618)

which is pretty redundant.

OK to install?

2005-11-07  Kelley Cook  <kcook@gcc.gnu.org>

	* gcc_update: Only output UTC time into LAST_UPDATED

Index: gcc_update
===================================================================
--- gcc_update	(revision 106618)
+++ gcc_update	(working copy)
@@ -250,8 +250,5 @@
     exit 1
 fi
 
-{
-  date
-  echo "`TZ=UTC date` (revision `svnversion .`)"
-} > LAST_UPDATED
+echo "`TZ=UTC0 date` (revision `svnversion .`)" > LAST_UPDATED
 touch_files_reexec

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]