diff options
author | Tom Rini <trini@embeddedalley.com> | 2009-06-13 14:33:59 -0400 |
---|---|---|
committer | Tom Rini <trini@embeddedalley.com> | 2009-06-13 14:33:59 -0400 |
commit | 42b8607cc4d15c37b1358640fe1f412bafd08f59 (patch) | |
tree | 7e237596322ed6737b9ef0c5efc3062c832f39f7 /classes | |
parent | ae823d80c94865dc07745b52c89ce487317d7428 (diff) |
autotools.bbclass: sdk packages should not depend on libtool-cross
Diffstat (limited to 'classes')
-rw-r--r-- | classes/autotools.bbclass | 1 |
1 files changed, 1 insertions, 0 deletions
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 ' |