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 | openembedded-core-77a7221be47a594f1c94d91170ed2552e8e4b7ca.tar.gz openembedded-core-77a7221be47a594f1c94d91170ed2552e8e4b7ca.tar.bz2 openembedded-core-77a7221be47a594f1c94d91170ed2552e8e4b7ca.zip |
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): deps += 'autoconf-native automake-native ' if not pn in ['libtool', 'libtool-native', 'libtool-cross']: - deps += 'libtool-native ' + deps += 'libtool-native libtool-cross ' return deps + 'gnu-config-native ' |