aboutsummaryrefslogtreecommitdiffstats
path: root/classes/autotools.bbclass
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2011-01-31 09:28:42 -0700
committerChris Larson <chris_larson@mentor.com>2011-02-04 07:59:40 -0700
commitf751d6c74e812fcaa055a71b992a2d6d6ef1c9d6 (patch)
tree19e5ceb0266163e9521963a4773b6e82cd4dddfb /classes/autotools.bbclass
parentdb60254c965392e21ba5438b1530cb7049574dfa (diff)
downloadopenembedded-f751d6c74e812fcaa055a71b992a2d6d6ef1c9d6.tar.gz
autotools: use oe.utils.inherits
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'classes/autotools.bbclass')
-rw-r--r--classes/autotools.bbclass15
1 files changed, 5 insertions, 10 deletions
diff --git a/classes/autotools.bbclass b/classes/autotools.bbclass
index 3850ae9e48..c8cb0e9af5 100644
--- a/classes/autotools.bbclass
+++ b/classes/autotools.bbclass
@@ -12,12 +12,11 @@ def autotools_deps(d):
return deps
deps += 'autoconf-native automake-native help2man-native '
- if not pn in ['libtool', 'libtool-native', 'libtool-cross']:
+ if pn not in ['libtool', 'libtool-native', 'libtool-cross']:
deps += 'libtool-native '
- if not bb.data.inherits_class('native', d) \
- and not bb.data.inherits_class('cross', d) \
- and not bb.data.inherits_class('sdk', d) \
- and not bb.data.getVar('INHIBIT_DEFAULT_DEPS', d, 1):
+ if (not oe.utils.inherits(d, 'native', 'nativesdk', 'cross',
+ 'sdk') and
+ not d.getVar('INHIBIT_DEFAULT_DEPS', True)):
deps += 'libtool-cross '
return deps + 'gnu-config-native '
@@ -31,11 +30,7 @@ DEPENDS_virtclass-nativesdk_prepend = "${@autotools_deps(d)}"
inherit siteinfo
def _autotools_get_sitefiles(d):
- def inherits(d, *classes):
- if any(bb.data.inherits_class(cls, d) for cls in classes):
- return True
-
- if inherits(d, "native", "nativesdk"):
+ if oe.utils.inherits(d, 'native', 'nativesdk'):
return
sitedata = siteinfo_data(d)