mirror of
https://git.yoctoproject.org/poky
synced 2026-03-17 04:39:40 +01:00
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:
committed by
Richard Purdie
parent
71029a2839
commit
60114299f0
@@ -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 '
|
||||
|
||||
|
||||
Reference in New Issue
Block a user