From 61d534ef1de6992d1fe89aadeca7367ba93e2578 Mon Sep 17 00:00:00 2001 From: Manuel Domke Date: Mon, 16 Apr 2018 18:39:15 +0200 Subject: [PATCH] remove BUILD_DATE from --version --- software/Makefile | 1 - software/infnoise.c | 1 - 2 files changed, 2 deletions(-) diff --git a/software/Makefile b/software/Makefile index 09fd8b9..5a45d12 100644 --- a/software/Makefile +++ b/software/Makefile @@ -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 diff --git a/software/infnoise.c b/software/infnoise.c index 0994496..a96eea4 100644 --- a/software/infnoise.c +++ b/software/infnoise.c @@ -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; }