Skip to content

Commit

Permalink
Update Makefile
Browse files Browse the repository at this point in the history
Changed from mercurial (hg) calls to git calls in line 13 und 14. Plugin should compile now.
  • Loading branch information
msebald committed Jul 10, 2020
1 parent 9847134 commit a4aee61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ WIN32_CC ?= $(WIN32_DEV_TOP)/mingw-4.7.2/bin/gcc
PROTOC_C ?= protoc-c
PKG_CONFIG ?= pkg-config

REVISION_ID = $(shell hg id -i)
REVISION_NUMBER = $(shell hg id -n)
REVISION_ID = $(shell git rev-parse HEAD)
REVISION_NUMBER = $(shell git rev-list --all --count)
ifneq ($(REVISION_ID),)
PLUGIN_VERSION ?= 0.9.$(shell date +%Y.%m.%d).git.r$(REVISION_NUMBER).$(REVISION_ID)
else
Expand Down

0 comments on commit a4aee61

Please sign in to comment.