1.4.2 version number

sayer/1.4-spce2.6
Stefan Sayer 15 years ago
parent 8e238656c3
commit 93487f1c35

@ -3,25 +3,25 @@ else
makefile_defs=1
export makefile_defs
GIT = $(shell which git)
SVNVERSION = $(shell which svnversion)
ifneq ($(GIT),)
SCM_REV = $(shell if git --help describe |grep dirty 2>&1 >/dev/null ; \
then git describe --always --dirty 2>/dev/null; \
else git describe --always 2>/dev/null; fi)
endif
ifeq ($(SCM_REV),)
ifneq ($(SVNVERSION),)
SCM_REV = r$(shell svnversion -n .)
endif
endif
#GIT = $(shell which git)
#SVNVERSION = $(shell which svnversion)
#ifneq ($(GIT),)
# SCM_REV = $(shell if git --help describe |grep dirty 2>&1 >/dev/null ; \
# then git describe --always --dirty 2>/dev/null; \
# else git describe --always 2>/dev/null; fi)
#endif
#
#ifeq ($(SCM_REV),)
#ifneq ($(SVNVERSION),)
# SCM_REV = r$(shell svnversion -n .)
#endif
#endif
#version number
VERSION = 1
PATCHLEVEL = 4
SUBLEVEL = 1
SUBLEVEL = 2
ifneq ($(SCM_REV),)
RELEASE = $(SCM_REV)

Loading…
Cancel
Save