From 6af69c8ef547dca604ee5a4e98d8725147d78f1c Mon Sep 17 00:00:00 2001 From: Anthony Ryan Date: Fri, 12 Jun 2026 19:22:19 -0400 Subject: [PATCH] Fix comment explaining how to compile without git history While compiling the tagged release from the tarball on Gentoo, I I noticed the example comment had drifted out of sync in c5ccb0f --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 06f5fd4ef..66fda35ef 100644 --- a/Makefile +++ b/Makefile @@ -3,10 +3,10 @@ ### NOTES: ### version string is fetched from git history -### when not available, specify GIT_VERSION on commnad line: +### when not available, specify GIT_VERSION_BASE during make: ### ### ``` -### export GIT_VERSION=3.x.y-dev +### make GIT_VERSION_BASE="v3.x.y" ### ``` GIT_VERSION_BASE := $(shell git describe --long --abbrev=7 2>/dev/null || git describe --long --abbrev=7 --always)