]> code.ossystems Code Review - openembedded-core.git/commitdiff
autotools: don't special-case help2man-native for dependencies
authorRoss Burton <ross.burton@arm.com>
Thu, 16 Jul 2020 11:55:43 +0000 (12:55 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sat, 18 Jul 2020 10:06:27 +0000 (11:06 +0100)
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 <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/autotools.bbclass

index 6c2a33ac72fe18a51e37fb6c9e6f2f4da4f450e1..1f3c771c69697cb67e05394ab46b29b059f7c0e8 100644 (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 '