mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-13 05:03:02 +01:00
Merge pull request #262 from Ansa89/trivial-fix
Version: add revision only if git is available
This commit is contained in:
commit
b66874b7b3
@ -1,7 +1,11 @@
|
||||
# Version
|
||||
TOXIC_VERSION = 0.5.2
|
||||
REV = $(shell git rev-list HEAD --count)
|
||||
VERSION = $(TOXIC_VERSION)_r$(REV)
|
||||
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
|
||||
VERSION = $(TOXIC_VERSION)
|
||||
endif
|
||||
|
||||
# Project directories
|
||||
DOC_DIR = $(BASE_DIR)/doc
|
||||
|
@ -20,6 +20,9 @@ install: toxic
|
||||
|
||||
@echo "Installing man pages"
|
||||
@for f in $(MANFILES) ; do \
|
||||
if [ ! -e "$$f" ]; then \
|
||||
continue ;\
|
||||
fi ;\
|
||||
section=$(abspath $(DESTDIR)/$(MANDIR))/man`echo $$f | rev | cut -d "." -f 1` ;\
|
||||
file=$$section/$$f ;\
|
||||
mkdir -p $$section ;\
|
||||
|
Loading…
Reference in New Issue
Block a user