diff options
author | Ross Burton <ross.burton@arm.com> | 2020-07-16 12:55:43 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-07-18 11:06:32 +0100 |
commit | 60114299f09fbb35cda6ac4b08c0f75e2c6c1320 (patch) | |
tree | 500e56e31475741ae50684cfb9d7f54bb789c431 /meta | |
parent | 71029a2839161f11f0fd9f720b20bdf15734f256 (diff) | |
download | poky-60114299f09fbb35cda6ac4b08c0f75e2c6c1320.tar.gz |
autotools: don't special-case help2man-native for dependencies
help2man-native doesn't need to be handled specially, we can build it
normally or use INHIBIT_AUTOTOOLS_DEPS like everyone else.
(From OE-Core rev: 886e7d08208c8788488f8299786140fd5b61e548)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-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 6c2a33ac72..1f3c771c69 100644 --- a/meta/classes/autotools.bbclass +++ b/meta/classes/autotools.bbclass | |||
@@ -5,7 +5,7 @@ def autotools_dep_prepend(d): | |||
5 | pn = d.getVar('PN') | 5 | pn = d.getVar('PN') |
6 | deps = '' | 6 | deps = '' |
7 | 7 | ||
8 | if pn in ['autoconf-native', 'automake-native', 'help2man-native']: | 8 | if pn in ['autoconf-native', 'automake-native']: |
9 | return deps | 9 | return deps |
10 | deps += 'autoconf-native automake-native ' | 10 | deps += 'autoconf-native automake-native ' |
11 | 11 | ||