]> code.ossystems Code Review - openembedded-core.git/commitdiff
autotools.bbclass: Add help2man-native to the main DEPENDS tree
authorTom Rini <tom_rini@mentor.com>
Fri, 15 Jul 2011 18:50:52 +0000 (11:50 -0700)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 20 Jul 2011 14:24:59 +0000 (15:24 +0100)
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>
meta/classes/autotools.bbclass

index 98c871acc31ecf799d7344ec3f930fd9a00912d7..ed5637ef3b9007e891982fa1d0a60a8742882de5 100644 (file)
@@ -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 '