aboutsummaryrefslogtreecommitdiff
path: root/lib/globals.sh
diff options
context:
space:
mode:
Diffstat (limited to 'lib/globals.sh')
-rw-r--r--lib/globals.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/globals.sh b/lib/globals.sh
index b6669776..c29a6a74 100644
--- a/lib/globals.sh
+++ b/lib/globals.sh
@@ -24,7 +24,10 @@ build="${build}"
host="${host:-${build}}"
target="${host}"
-date="$(date "+%Y.%m.%d")"
+# we need to read the date once, so that we don't have
+# varying dates when midnight occurs during a build.
+timestamp=$(date +%s)
+date="$(date --date="@${timestamp}" "+%Y.%m.%d")"
gcc="$(which gcc)"
host_gcc_version="$(${gcc} -v 2>&1 | tail -1)"
binutils="default"