From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: From: Sven Eckelmann Date: Sat, 21 Sep 2013 16:31:15 +0200 Message-Id: <1379773877-6299-2-git-send-email-sven@narfation.org> In-Reply-To: <1379773877-6299-1-git-send-email-sven@narfation.org> References: <1379773877-6299-1-git-send-email-sven@narfation.org> Subject: [B.A.T.M.A.N.] [PATCH 2/4] alfred: Fix version number for git builds of vis Reply-To: The list for a Better Approach To Mobile Ad-hoc Networking List-Id: The list for a Better Approach To Mobile Ad-hoc Networking List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: b.a.t.m.a.n@lists.open-mesh.org Cc: Sven Eckelmann Signed-off-by: Sven Eckelmann --- vis/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vis/Makefile b/vis/Makefile index 9bf72c9..bd83877 100644 --- a/vis/Makefile +++ b/vis/Makefile @@ -49,7 +49,7 @@ PREFIX = /usr/local SBINDIR = $(PREFIX)/sbin # try to generate revision -REVISION= $(shell if [ -d .git ]; then \ +REVISION= $(shell if [ -d ../.git ]; then \ echo $$(git describe --always --dirty --match "v*" |sed 's/^v//' 2> /dev/null || echo "[unknown]"); \ fi) ifneq ($(REVISION),) -- 1.8.4.rc3