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