From patchwork Tue Sep 11 10:33:37 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: git: add missing Python dependency Date: Tue, 11 Sep 2012 10:33:37 -0000 From: ml@communistcode.co.uk X-Patchwork-Id: 36275 Message-Id: <1347359617-4821-1-git-send-email-ml@communistcode.co.uk> To: openembedded-core@lists.openembedded.org Cc: Jack Mitchell From: Jack Mitchell Add python to DEPENDS as it fails to install on target with RPM failing at do_rootfs due to un-met dependencies. Signed-off-by: Jack Mitchell --- meta/recipes-devtools/git/git.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-devtools/git/git.inc b/meta/recipes-devtools/git/git.inc index 6748b70..9181da6 100644 --- a/meta/recipes-devtools/git/git.inc +++ b/meta/recipes-devtools/git/git.inc @@ -1,7 +1,7 @@ DESCRIPTION = "The git revision control system used by the Linux kernel developers" SECTION = "console/utils" LICENSE = "GPLv2" -DEPENDS = "openssl curl zlib expat" +DEPENDS = "openssl curl zlib expat python" PROVIDES_append_virtclass-native = " git-replacement-native"