remove BUILD_DATE from --version

This commit is contained in:
Manuel Domke
2018-04-16 18:39:15 +02:00
parent d73dd31b32
commit 61d534ef1d
2 changed files with 0 additions and 2 deletions

View File

@@ -1,7 +1,6 @@
GIT_VERSION := $(shell git --no-pager describe --tags --always)
GIT_COMMIT := $(shell git rev-parse --verify HEAD)
GIT_DATE := $(firstword $(shell git --no-pager show --date=iso-strict --format="%ad" --name-only))
BUILD_DATE := $(shell date --iso=seconds)
PREFIX = $(DESTDIR)/usr/local

View File

@@ -367,7 +367,6 @@ int main(int argc, char **argv)
printf("GIT VERSION - %s\n", GIT_VERSION);
printf("GIT COMMIT - %s\n", GIT_COMMIT);
printf("GIT DATE - %s\n", GIT_DATE);
printf("BUILD DATE - %s\n", BUILD_DATE);
return 0;
}