]> code.ossystems Code Review - openembedded-core.git/commitdiff
bitbake.conf: Add git-native to ASSUME_PROVIDED
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 10 Jul 2012 13:26:18 +0000 (13:26 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 18 Jul 2012 13:30:47 +0000 (14:30 +0100)
Originally, git was something new, not installed everywhere and had commandline
stability problems. This has changed and git it no longer makes sense to
continually build this when the system installed version is likely sufficient.

This speeds up build since recipes no longer have to wait for git-native to build
if they're fetched from a git:// SRC_URI.

Also add git to the sanity checks and drop the no unneeded svn reference.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/sanity.bbclass
meta/conf/bitbake.conf

index 765958e2e09faf35539d01513da420cf9b4e09cd..a3fe075dee472a0605e9172cf9eb9db69b1b2ce1 100644 (file)
@@ -2,7 +2,7 @@
 # Sanity check the users setup for common misconfigurations
 #
 
-SANITY_REQUIRED_UTILITIES ?= "patch diffstat texi2html makeinfo svn bzip2 tar gzip gawk chrpath wget cpio"
+SANITY_REQUIRED_UTILITIES ?= "patch diffstat texi2html makeinfo git bzip2 tar gzip gawk chrpath wget cpio"
 
 def raise_sanity_error(msg, d):
     if d.getVar("SANITY_USE_EVENTS", True) == "1":
index 76ee65f80f6e3ad095bd9338348b13e0a9801a1e..c94012e665d19a9e83fca74f45704bbd8c02d6a9 100644 (file)
@@ -152,6 +152,7 @@ DATETIME = "${DATE}${TIME}"
 # its own in staging
 ASSUME_PROVIDED = "\
     bzip2-native \
+    git-native \
     grep-native \
     diffstat-native \
     patch-native \