From fe83cdef6c69a0b62bcfc04ba89f0410c32cfb04 Mon Sep 17 00:00:00 2001 From: vanhofen Date: Sat, 8 Jan 2022 22:59:39 +0100 Subject: [PATCH] src/gui/Makefile.am: small addition to db6a7cf5cb0f3d192142f17315104f3835eabc81 Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/eaf46a6f0d6a902d5a8942c6c046704bb4ebe7b5 Author: vanhofen Date: 2022-01-08 (Sat, 08 Jan 2022) Origin message was: ------------------ - src/gui/Makefile.am: small addition to db6a7cf5cb0f3d192142f17315104f3835eabc81 --- src/gui/Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gui/Makefile.am b/src/gui/Makefile.am index ed044527a..50c88374e 100644 --- a/src/gui/Makefile.am +++ b/src/gui/Makefile.am @@ -1,9 +1,9 @@ AM_CPPFLAGS = -fno-rtti -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS BUILT_SOURCES = version.h version.h: - @rm -f $@; \ - echo "#define BUILT_DATE \"$$(date)\"" > $@ - echo "#define BUILT_TIMESTAMP \"$$(date +%s)\"" >> $@ + @rm -f $@ + @echo "#define BUILT_DATE \"$$(date)\"" > $@ + @echo "#define BUILT_TIMESTAMP \"$$(date +%s)\"" >> $@ @if test -d $(top_srcdir)/.git ; then \ pushd $(top_srcdir) ; \ GITTAG=$$(git tag -l "NI-*" | tail -n1); \