Add git version check to prerequisite check (#11229)

SVN-Revision: 31214
This commit is contained in:
Vasilis Tsiligiannis 2012-04-06 12:05:59 +00:00
parent f37ce3fad3
commit c56da13854
1 changed files with 6 additions and 2 deletions

View File

@ -121,8 +121,12 @@ $(eval $(call RequireCommand,wget, \
Please install wget. \
))
$(eval $(call RequireCommand,git, \
Please install git (git-core). \
define Require/git
git --version | awk '($$$$1 == "git") && ($$$$2 == "version") && ($$$$3 >= "1.6.5") { print "ok" }' | grep ok > /dev/null
endef
$(eval $(call Require,git, \
Please install git (git-core) v1.6.5 or later. \
))
define Require/gnutar