aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/Makefile
diff options
context:
space:
mode:
authorFlorian Eckert <fe@dev.tdt.de>2020-05-14 11:35:20 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2021-03-05 14:37:11 -0700
commit957702af94af22e10377493608befd9750815b5d (patch)
treebdced2722f665ba19ed136185d2e151b1ce7c018 /src/Makefile
parentversion: bump (diff)
downloadwireguard-tools-957702af94af22e10377493608befd9750815b5d.tar.xz
wireguard-tools-957702af94af22e10377493608befd9750815b5d.zip
Makefile: fix version indicator
If we execute `wg --version` we get a different version string that does not match with the version string in the openwrt makefile. Current version string: `wireguard-tools vreboot-13159-gac5caa2718 -https://git.zx2c4.com/wireguard-tools/` Corrected versions string: `wireguard-tools v1.0.20200319 -https://git.zx2c4.com/wireguard-tools/` Signed-off-by: Florian Eckert <fe@dev.tdt.de> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to '')
-rw-r--r--src/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index 037d2dd..fc5e0c6 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -48,7 +48,7 @@ CFLAGS += -DRUNSTATEDIR="\"$(RUNSTATEDIR)\""
ifeq ($(DEBUG),yes)
CFLAGS += -g
endif
-WIREGUARD_TOOLS_VERSION = $(patsubst v%,%,$(shell GIT_CEILING_DIRECTORIES="$(PWD)/../.." git describe --dirty 2>/dev/null))
+WIREGUARD_TOOLS_VERSION = $(patsubst v%,%,$(shell GIT_DIR="$(PWD)/../.git" git describe --dirty 2>/dev/null))
ifneq ($(WIREGUARD_TOOLS_VERSION),)
CFLAGS += -D'WIREGUARD_TOOLS_VERSION="$(WIREGUARD_TOOLS_VERSION)"'
endif