[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: autobuild.m4 time zone fix
From: |
Simon Josefsson |
Subject: |
Re: autobuild.m4 time zone fix |
Date: |
Mon, 18 Aug 2008 20:11:31 +0200 |
User-agent: |
Gnus/5.110011 (No Gnus v0.11) Emacs/22.2 (gnu/linux) |
Simon Josefsson <address@hidden> writes:
> Pushed.
This one too.
/Simon
>From e8ce1f16994aebc497cb91159149ec33baeadfe8 Mon Sep 17 00:00:00 2001
From: Simon Josefsson <address@hidden>
Date: Mon, 18 Aug 2008 19:47:23 +0200
Subject: [PATCH] Use ISO 8601 format. Attribution.
---
ChangeLog | 3 ++-
m4/autobuild.m4 | 4 ++--
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 57e3cfb..a09e688 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
2008-08-18 Simon Josefsson <address@hidden>
- * m4/autobuild.m4: Use TZ=UTC to avoid time zone complexity.
+ * m4/autobuild.m4: Use TZ=UTC to avoid time zone complexity. Use
+ ISO 8601 format. Suggested by Greg Troxel <address@hidden>.
2008-08-18 Bruno Haible <address@hidden>
diff --git a/m4/autobuild.m4 b/m4/autobuild.m4
index f0d00a0..ccd9b5c 100644
--- a/m4/autobuild.m4
+++ b/m4/autobuild.m4
@@ -1,4 +1,4 @@
-# autobuild.m4 serial 6
+# autobuild.m4 serial 7
dnl Copyright (C) 2004, 2006, 2007, 2008 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
@@ -29,7 +29,7 @@ AC_DEFUN([AB_INIT],
ifelse([$1],[],,[AC_MSG_NOTICE([autobuild mode... $1])])
- date=`TZ=UTC date +%Y%m%d-%H%M%S`
+ date=`TZ=UTC date +%Y%m%dT%H%M%SZ`
if test "$?" != 0; then
date=`date`
fi
--
1.5.6.3