diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | main/eediff.c | 2 | ||||
-rw-r--r-- | main/eeplot.c | 2 | ||||
-rw-r--r-- | main/eeshow.c | 2 | ||||
-rw-r--r-- | main/eetest.c | 2 |
5 files changed, 5 insertions, 5 deletions
@@ -70,7 +70,7 @@ LDLIBS = -lm \ GIT_VERSION = $(shell git log -1 --format='%h' -s .) GIT_STATUS = $(shell [ -z "`git status -s -uno`" ] || echo +) -BUILD_DATE = $(shell date +'%Y%m%d-%H:%M') +BUILD_DATE = $(shell date -u +'%Y%m%d-%H:%MZ') CFLAGS += -DVERSION='"$(GIT_VERSION)$(GIT_STATUS)"' \ -DBUILD_DATE='"$(BUILD_DATE)"' diff --git a/main/eediff.c b/main/eediff.c index 8bbd547..c13ade2 100644 --- a/main/eediff.c +++ b/main/eediff.c @@ -94,7 +94,7 @@ int main(int argc, char **argv) use_pango = 1; break; case 'V': - fprintf(stderr, "%s %sZ\n", version, build_date); + fprintf(stderr, "%s %s\n", version, build_date); return 1; case 'h': case '?': diff --git a/main/eeplot.c b/main/eeplot.c index c5c19d1..55ba7d4 100644 --- a/main/eeplot.c +++ b/main/eeplot.c @@ -178,7 +178,7 @@ int main(int argc, char **argv) use_pango = 1; break; case 'V': - fprintf(stderr, "%s %sZ\n", version, build_date); + fprintf(stderr, "%s %s\n", version, build_date); return 1; case 'h': case '?': diff --git a/main/eeshow.c b/main/eeshow.c index 5af1f43..d5c9920 100644 --- a/main/eeshow.c +++ b/main/eeshow.c @@ -97,7 +97,7 @@ int main(int argc, char **argv) use_pango = 1; break; case 'V': - fprintf(stderr, "%s %sZ\n", version, build_date); + fprintf(stderr, "%s %s\n", version, build_date); return 1; case 'h': default: diff --git a/main/eetest.c b/main/eetest.c index db8b333..e65ac59 100644 --- a/main/eetest.c +++ b/main/eetest.c @@ -88,7 +88,7 @@ int main(int argc, char **argv) sexpr(); return 0; case 'V': - fprintf(stderr, "%s %sZ\n", version, build_date); + fprintf(stderr, "%s %s\n", version, build_date); return 1; case 'h': default: |