From: Tom Rini Date: Sat, 13 Jun 2009 18:33:59 +0000 (-0400) Subject: autotools.bbclass: sdk packages should not depend on libtool-cross X-Git-Tag: Release-2010-05/1~3164^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=42b8607cc4d15c37b1358640fe1f412bafd08f59;p=openembedded.git autotools.bbclass: sdk packages should not depend on libtool-cross --- diff --git a/classes/autotools.bbclass b/classes/autotools.bbclass index e43b289c56..8236a27c76 100644 --- a/classes/autotools.bbclass +++ b/classes/autotools.bbclass @@ -20,6 +20,7 @@ def autotools_dep_prepend(d): deps += 'libtool-native ' if not bb.data.inherits_class('native', d) \ and not bb.data.inherits_class('cross', d) \ + and not bb.data.inherits_class('sdk', d) \ and not bb.data.getVar('INHIBIT_DEFAULT_DEPS', d, 1): deps += 'libtool-cross '