1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-06-29 15:07:46 +02:00

Merge branch 'Ansa89-trivial-fix'

This commit is contained in:
Jfreegman 2014-10-16 14:27:58 -04:00
commit f09002a49a

View File

@ -1,10 +1,10 @@
# Version
TOXIC_VERSION = 0.5.2
REV = $(shell if which git &>/dev/null ; then git rev-list HEAD --count 2>/dev/null || echo -n "error" ; else echo -n "error" ; fi)
ifneq ($(REV), error)
VERSION = $(TOXIC_VERSION)_r$(REV)
else
REV = $(shell git rev-list HEAD --count 2>/dev/null || echo -n "error")
ifneq (, $(findstring error, $(REV)))
VERSION = $(TOXIC_VERSION)
else
VERSION = $(TOXIC_VERSION)_r$(REV)
endif
# Project directories