aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2009-05-07 18:44:36 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2009-05-07 18:44:36 +0000
commit55dbfb5af4965fbb7570228fb3e70cae69169599 (patch)
tree0b45507a9c67ac6cef538a8bec43a9fa0476f58f
parent7281387161176907c31935f28f4bf60e96e67b78 (diff)
downloadalpine-conf-55dbfb5af4965fbb7570228fb3e70cae69169599.tar.bz2
alpine-conf-55dbfb5af4965fbb7570228fb3e70cae69169599.tar.xz
check for .git dir before set version from git describe
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c4ec277..b4bbc73 100644
--- a/Makefile
+++ b/Makefile
@@ -32,7 +32,7 @@ ETC_LBU_FILES := lbu.conf
EXTRA_DIST := Makefile README
DIST_FILES := $(SCRIPT_SOURCES) $(ETC_LBU_FILES) $(EXTRA_DIST)
-GIT_REV := $(shell git describe || echo exported)
+GIT_REV := $(shell test -d .git && git describe || echo exported)
ifneq ($(GIT_REV), exported)
FULL_VERSION := $(patsubst $(PACKAGE)-%,%,$(GIT_REV))
FULL_VERSION := $(patsubst v%,%,$(FULL_VERSION))