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: lucaceresoli/bug-15201-perf-libtraceevent-missing~10525 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=886e7d08208c8788488f8299786140fd5b61e548;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.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 6c2a33ac72f..1f3c771c696 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 '