diff options
author | Tom Rini <tom_rini@mentor.com> | 2011-07-15 11:50:52 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-20 15:24:59 +0100 |
commit | fd03530b4e2fb0660212a5ffb849c2169076585c (patch) | |
tree | 3b3e2aa2d6f21677ae5d26f40847d68753600b80 | |
parent | 9673d7aa1f9e1c88ba69047b2e22636c755edaaa (diff) | |
download | openembedded-core-fd03530b4e2fb0660212a5ffb849c2169076585c.tar.gz openembedded-core-fd03530b4e2fb0660212a5ffb849c2169076585c.tar.bz2 openembedded-core-fd03530b4e2fb0660212a5ffb849c2169076585c.tar.xz openembedded-core-fd03530b4e2fb0660212a5ffb849c2169076585c.zip |
autotools.bbclass: Add help2man-native to the main DEPENDS tree
With help2man no longer being required by sanity.bbclass we need to
make sure that if we are going to build autotools stuff that help2man
will be there as it's a frequent implicit dependency.
Signed-off-by: Tom Rini <tom_rini@mentor.com>
-rw-r--r-- | meta/classes/autotools.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass index 98c871acc..ed5637ef3 100644 --- a/meta/classes/autotools.bbclass +++ b/meta/classes/autotools.bbclass @@ -5,9 +5,9 @@ def autotools_dep_prepend(d): pn = bb.data.getVar('PN', d, 1) deps = '' - if pn in ['autoconf-native', 'automake-native']: + if pn in ['autoconf-native', 'automake-native', 'help2man-native']: return deps - deps += 'autoconf-native automake-native ' + deps += 'autoconf-native automake-native help2man-native ' if not pn in ['libtool', 'libtool-native', 'libtool-cross']: deps += 'libtool-native ' |