diff options
author | Daniel Stenberg <daniel@haxx.se> | 2007-01-14 14:15:18 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2007-01-14 14:15:18 +0000 |
commit | 16c602f02391810b542b1a0a95c3293b995950f0 (patch) | |
tree | 71929a9bc5f5532f1b5bc70845e1d8477043f73c | |
parent | 7f4ca01b3d4517e87dc0d465ea360414c3cc1030 (diff) |
The version string used in builds for version timestamps is now UTC instead
of the local time zone. Makes it a lot easier to compare builds and it makes
build servers produce similarly stamped builed.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12011 a1c6a512-1295-4272-9138-f99709370657
-rwxr-xr-x | tools/configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/configure b/tools/configure index 0d119f6caf..7b1b1ad00d 100755 --- a/tools/configure +++ b/tools/configure @@ -1579,8 +1579,8 @@ export OBJDIR=@PWD@ export BUILDDIR=@PWD@ export LANGUAGE=@LANGUAGE@ export MEMORYSIZE=@MEMORY@ -export VERSION=\$(shell date +%y%m%d-%H%M) -export BUILDDATE=\$(shell date +'-DYEAR=%Y -DMONTH=%m -DDAY=%d') +export VERSION=\$(shell date -u +%y%m%d-%H%M) +export BUILDDATE=\$(shell date -u +'-DYEAR=%Y -DMONTH=%m -DDAY=%d') export MKFIRMWARE=@TOOL@ export BMP2RB_MONO=@BMP2RB_MONO@ export BMP2RB_NATIVE=@BMP2RB_NATIVE@ |