diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-08-29 23:45:00 +0200 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-08-29 23:45:02 +0200 |
commit | 222bd7973759fc7b01e97b5fb65b4e419d5e5de0 (patch) | |
tree | 058b58dfcaa3e70be67d8d674893beb1b83058bc | |
parent | 21b070dd7d65cd60217e446810559ec241d0b826 (diff) |
Fix subversion setting
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -15,7 +15,8 @@ ifeq ($(origin SUB_VERSION), undefined) ifneq ($(SUB_VERSION), ) VERSION := $(firstword $(subst -, ,$(SUB_VERSION))) SUB_VERSION := $(word 2,$(subst -, ,$(SUB_VERSION))) - else + endif + ifeq ($(SUB_VERSION), ) SUB_VERSION := $(shell git rev-parse --short HEAD) ifeq ($(SUB_VERSION), ) SUB_VERSION := unknown-dev |