summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohannes Schindelin <johannes.schindelin@gmx.de>2017-10-30 17:19:42 (GMT)
committerJunio C Hamano <gitster@pobox.com>2017-11-01 04:43:52 (GMT)
commit39bb86b4e51a209e2bca765eab50eaffae56e527 (patch)
tree718c1bb7dc1bc3bc45c8387a427391f27e43b294 /Makefile
parentfc849d8d6b90e5c1e0c37bc0d60dd92b2fe7347f (diff)
downloadgit-39bb86b4e51a209e2bca765eab50eaffae56e527.zip
git-39bb86b4e51a209e2bca765eab50eaffae56e527.tar.gz
git-39bb86b4e51a209e2bca765eab50eaffae56e527.tar.bz2
mingw: include the full version information in the resources
This fixes https://github.com/git-for-windows/git/issues/723 Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 043ec83..5a524e0 100644
--- a/Makefile
+++ b/Makefile
@@ -1915,7 +1915,8 @@ $(SCRIPT_LIB) : % : %.sh GIT-SCRIPT-DEFINES
git.res: git.rc GIT-VERSION-FILE
$(QUIET_RC)$(RC) \
- $(join -DMAJOR= -DMINOR=, $(wordlist 1,2,$(subst -, ,$(subst ., ,$(GIT_VERSION))))) \
+ $(join -DMAJOR= -DMINOR= -DMICRO= -DPATCHLEVEL=, $(wordlist 1, 4, \
+ $(shell echo $(GIT_VERSION) 0 0 0 0 | tr '.a-zA-Z-' ' '))) \
-DGIT_VERSION="\\\"$(GIT_VERSION)\\\"" -i $< -o $@
# This makes sure we depend on the NO_PERL setting itself.