From a1f9885664179b948ac3ee50a002d1053a93e4ab Mon Sep 17 00:00:00 2001 From: Ludwig Nussel Date: Tue, 13 Jan 2009 07:57:01 +0000 Subject: [PATCH] fix build with newer git installations --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 725b2e67..d698761d 100644 --- a/Makefile +++ b/Makefile @@ -201,7 +201,7 @@ ifeq ($(wildcard .svn),.svn) endif else ifeq ($(wildcard .git/svn/.metadata),.git/svn/.metadata) - SVN_REV=$(shell LANG=C git-svn info | awk '$$1 == "Revision:" {print $$2; exit 0}') + SVN_REV=$(shell LANG=C git svn info | awk '$$1 == "Revision:" {print $$2; exit 0}') ifneq ($(SVN_REV),) VERSION:=$(VERSION)_SVN$(SVN_REV) endif