diff options
author | Richard Purdie <richard@openedhand.com> | 2007-05-09 09:09:36 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2007-05-09 09:09:36 +0000 |
commit | 77a7221be47a594f1c94d91170ed2552e8e4b7ca (patch) | |
tree | 79905b1fcbf9033da1fdc205c35efe7d8e587e79 | |
parent | 8c0306abd5871d060b257bca2d2786977eb86a9e (diff) | |
download | poky-77a7221be47a594f1c94d91170ed2552e8e4b7ca.tar.gz |
autotools.bbclass: Add libtool-cross as a default dependency
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1617 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rw-r--r-- | meta/classes/autotools.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass index a065505aa9..8fc05cde09 100644 --- a/meta/classes/autotools.bbclass +++ b/meta/classes/autotools.bbclass | |||
@@ -14,7 +14,7 @@ def autotools_dep_prepend(d): | |||
14 | deps += 'autoconf-native automake-native ' | 14 | deps += 'autoconf-native automake-native ' |
15 | 15 | ||
16 | if not pn in ['libtool', 'libtool-native', 'libtool-cross']: | 16 | if not pn in ['libtool', 'libtool-native', 'libtool-cross']: |
17 | deps += 'libtool-native ' | 17 | deps += 'libtool-native libtool-cross ' |
18 | 18 | ||
19 | return deps + 'gnu-config-native ' | 19 | return deps + 'gnu-config-native ' |
20 | 20 | ||