projects
/
scm
/
bb
/
tizen-distro.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e16823b
)
autotools.bbclass: Fix addition of libtool-cross
author
Richard Purdie
<richard@openedhand.com>
Wed, 9 May 2007 09:55:38 +0000
(09:55 +0000)
committer
Richard Purdie
<richard@openedhand.com>
Wed, 9 May 2007 09:55:38 +0000
(09:55 +0000)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1620
311d38ba
-8fff-0310-9ca6-
ca027cbcb966
meta/classes/autotools.bbclass
patch
|
blob
|
history
diff --git
a/meta/classes/autotools.bbclass
b/meta/classes/autotools.bbclass
index
8fc05cd
..
472249d
100644
(file)
--- a/
meta/classes/autotools.bbclass
+++ b/
meta/classes/autotools.bbclass
@@
-14,7
+14,12
@@
def autotools_dep_prepend(d):
deps += 'autoconf-native automake-native '
if not pn in ['libtool', 'libtool-native', 'libtool-cross']:
- deps += 'libtool-native libtool-cross '
+ deps += 'libtool-native '
+ if not bb.data.inherits_class('native', d) \
+ and not bb.data.inherits_class('cross', d) \
+ and not bb.data.getVar('INHIBIT_DEFAULT_DEPS', d, 1):
+ deps += 'libtool-cross '
+
return deps + 'gnu-config-native '