aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2019-10-08 16:48:18 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2019-10-08 16:48:18 +0200
commit222f0f8000e80ffff3253fac9990ee61f4e64398 (patch)
tree2bbe1d5e829af8d68426397e5b91a0f283e7dc31
parentwintun: expose version (diff)
downloadwireguard-go-222f0f8000e80ffff3253fac9990ee61f4e64398.tar.xz
wireguard-go-222f0f8000e80ffff3253fac9990ee61f4e64398.zip
Makefile: remove v prefix
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 842e069..47f22d6 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@ MAKEFLAGS += --no-print-directory
generate-version-and-build:
@export GIT_CEILING_DIRECTORIES="$(realpath $(CURDIR)/..)" && \
tag="$$(git describe --dirty 2>/dev/null)" && \
- ver="$$(printf 'package device\nconst WireGuardGoVersion = "%s"\n' "$$tag")" && \
+ ver="$$(printf 'package device\nconst WireGuardGoVersion = "%s"\n' "$${tag#v}")" && \
[ "$$(cat device/version.go 2>/dev/null)" != "$$ver" ] && \
echo "$$ver" > device/version.go && \
git update-index --assume-unchanged device/version.go || true