summaryrefslogtreecommitdiffstats
path: root/meta/classes/autotools.bbclass
diff options
context:
space:
mode:
authorTom Rini <tom_rini@mentor.com>2011-07-15 11:50:52 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-07-20 15:27:37 +0100
commit98615f63875f9d50b4a5addc62c966c0393820ab (patch)
tree3713ee034459e60512842ff2f750326680331766 /meta/classes/autotools.bbclass
parent627a2f5cbf0219dd436e3dd0dba3a887d2fe1872 (diff)
downloadpoky-98615f63875f9d50b4a5addc62c966c0393820ab.tar.gz
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. (From OE-Core rev: fd03530b4e2fb0660212a5ffb849c2169076585c) Signed-off-by: Tom Rini <tom_rini@mentor.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/autotools.bbclass')
-rw-r--r--meta/classes/autotools.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass
index 98c871acc3..ed5637ef3b 100644
--- a/meta/classes/autotools.bbclass
+++ b/meta/classes/autotools.bbclass
@@ -5,9 +5,9 @@ def autotools_dep_prepend(d):
5 pn = bb.data.getVar('PN', d, 1) 5 pn = bb.data.getVar('PN', d, 1)
6 deps = '' 6 deps = ''
7 7
8 if pn in ['autoconf-native', 'automake-native']: 8 if pn in ['autoconf-native', 'automake-native', 'help2man-native']:
9 return deps 9 return deps
10 deps += 'autoconf-native automake-native ' 10 deps += 'autoconf-native automake-native help2man-native '
11 11
12 if not pn in ['libtool', 'libtool-native', 'libtool-cross']: 12 if not pn in ['libtool', 'libtool-native', 'libtool-cross']:
13 deps += 'libtool-native ' 13 deps += 'libtool-native '