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>
This commit is contained in:
Ross Burton 2020-07-16 12:55:43 +01:00 committed by Richard Purdie
parent 71029a2839
commit 60114299f0

View File

@ -5,7 +5,7 @@ def autotools_dep_prepend(d):
pn = d.getVar('PN')
deps = ''
if pn in ['autoconf-native', 'automake-native', 'help2man-native']:
if pn in ['autoconf-native', 'automake-native']:
return deps
deps += 'autoconf-native automake-native '