mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
Makefile.in (used by `make`) contains a shell execution line to read the current git tags and uses that value in the resulting binary. However, since we're not building from a git repository but from a tar file, this results in `bird --version` reporting a version of `v3.7.0-3239-gc13b5c993b` instead of `2.0.2`. The added patch makes sure that bird uses the `BIRD_VERSION` from `sysdep/config.h`
16 lines
489 B
Diff
16 lines
489 B
Diff
diff -urp a/Makefile.in b/Makefile.in
|
|
--- a/Makefile.in 1970-01-01 00:00:00.000000000 +0000
|
|
+++ b/Makefile.in 1970-01-01 00:00:00.000000000 +0000
|
|
@@ -21,11 +21,6 @@ INSTALL=@INSTALL@
|
|
INSTALL_PROGRAM=@INSTALL_PROGRAM@
|
|
INSTALL_DATA=@INSTALL_DATA@
|
|
|
|
-git-label:=$(strip $(shell git describe --always --dirty=-x 2>/dev/null))
|
|
-ifneq ($(git-label),)
|
|
- CFLAGS += -DGIT_LABEL="$(git-label)"
|
|
-endif
|
|
-
|
|
client=$(addprefix $(exedir)/,@CLIENT@)
|
|
daemon=$(exedir)/bird
|
|
protocols=@protocols@
|