From b74c49a6af84e6ab50018024e8862263b1e0bd6d Mon Sep 17 00:00:00 2001 From: Tetsuo Handa Date: Fri, 9 Oct 2020 22:09:50 +0900 Subject: 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 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') 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. -- cgit mrf-deployment