Skip to content

Commit

Permalink
buildsystem: change excessively verbose dirty flag from ' (dirty)' to…
Browse files Browse the repository at this point in the history
… '-d' to get a consistent REPOSITORY_VERSION without any spaces.
  • Loading branch information
redj authored and jerstlouis committed Aug 20, 2018
1 parent 98d3714 commit 0b140f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crossplatform.mk
Expand Up @@ -371,7 +371,7 @@ ifndef REPOSITORY_VER
else
ifneq ($(shell $(GIT) log -n 1 --format="%%%%" $(nullerror)),)
export GIT_REPOSITORY := yes
export REPOSITORY_VER := $(shell $(GIT) describe --tags --dirty=" (dirty)" --always)
export REPOSITORY_VER := $(shell $(GIT) describe --tags --dirty="-d" --always)
endif
endif
endif
Expand Down

0 comments on commit 0b140f8

Please sign in to comment.