fix build with newer git installations

This commit is contained in:
Ludwig Nussel 2009-01-13 07:57:01 +00:00
parent 8536a42dd5
commit a1f9885664
1 changed files with 1 additions and 1 deletions

View File

@ -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