From: Ross Burton Date: Thu, 16 Jul 2020 11:55:43 +0000 (+0100) Subject: autotools: don't special-case help2man-native for dependencies X-Git-Tag: uninative-2.9~228 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=886e7d08208c8788488f8299786140fd5b61e548;p=openembedded-core.git 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. Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- 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): 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 '