From: Alejandro Colomar Date: Fri, 23 Feb 2024 14:30:23 +0000 (+0100) Subject: share/mk/configure/version.mk: $DISTNAME: Don't hide git(1) errors X-Git-Tag: man-pages-6.7~93 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=26a2a1ca3c9a68c8a0eadcdbe30d1f8a21e329d3;p=thirdparty%2Fman-pages.git share/mk/configure/version.mk: $DISTNAME: Don't hide git(1) errors We don't call git(1) inside tarballs anymore to get the $DISTNAME, so we can safely assume that git(1) should never fail, and if it fails, we better get an error message. Signed-off-by: Alejandro Colomar --- diff --git a/share/mk/configure/version.mk b/share/mk/configure/version.mk index 4f85929e1..da2203239 100644 --- a/share/mk/configure/version.mk +++ b/share/mk/configure/version.mk @@ -12,7 +12,7 @@ include $(MAKEFILEDIR)/configure/build-depends/git.mk include $(MAKEFILEDIR)/configure/verbose.mk -DISTNAME := $(shell $(GIT) describe $(HIDE_ERR)) +DISTNAME := $(shell $(GIT) describe) DISTVERSION := $(patsubst man-pages-%,%,$(DISTNAME)) DISTDATE := $(shell $(GIT) log -1 --format='%aD')