aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorTetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>2020-10-09 22:09:50 +0900
committerDmitry Vyukov <dvyukov@google.com>2020-10-10 09:58:25 +0200
commitb74c49a6af84e6ab50018024e8862263b1e0bd6d (patch)
tree25df5ba7d25a457d43669269618b33f523d34436 /Makefile
parent93817d892548db363431ebb7f31518df0d8582ec (diff)
pkg/vcs: use committer date
The Freshness columns in Instances: table on the dashboard page look outdated, for these fields are showing when that patch was authored. Where possible, using when that patch was committed into the tree in question would be more meaningful. Update #1537
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5f9f3a3ff..b4f2a9c48 100644
--- a/Makefile
+++ b/Makefile
@@ -59,7 +59,7 @@ ifeq ("$(shell git diff --shortstat)", "")
else
REV=$(GITREV)+
endif
-GITREVDATE=$(shell git log -n 1 --format="%ad")
+GITREVDATE=$(shell git log -n 1 --format="%cd")
# Don't generate symbol table and DWARF debug info.
# Reduces build time and binary sizes considerably.