diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-06-23 14:47:49 -0700 |
---|---|---|
committer | Chris Larson <chris_larson@mentor.com> | 2010-06-24 10:15:07 -0700 |
commit | 0cf498e7c864088c052035932541ceec28f04984 (patch) | |
tree | 61e271a3ec15d12dcf7e492fed3779c3184bf8c1 /classes/base.bbclass | |
parent | 3950ba031a640a308c14d128ff96ad7d4027903e (diff) |
Rename base_dep_prepend and autotools_dep_prepend
When we start including methodpool funcs in the metadata, these blow up, since
the _prepend gets evaluated at finalize time.
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'classes/base.bbclass')
-rw-r--r-- | classes/base.bbclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/classes/base.bbclass b/classes/base.bbclass index e26a45e756..3995ac894a 100644 --- a/classes/base.bbclass +++ b/classes/base.bbclass @@ -57,7 +57,7 @@ oe_runmake() { ${MAKE} ${EXTRA_OEMAKE} "$@" || die "oe_runmake failed" } -def base_dep_prepend(d): +def base_deps(d): # # Ideally this will check a flag so we will operate properly in # the case where host == build == target, for now we don't work in @@ -83,9 +83,9 @@ def base_dep_prepend(d): deps += " linux-libc-headers-native" return deps -DEPENDS_prepend="${@base_dep_prepend(d)} " -DEPENDS_virtclass-native_prepend="${@base_dep_prepend(d)} " -DEPENDS_virtclass-nativesdk_prepend="${@base_dep_prepend(d)} " +DEPENDS_prepend="${@base_deps(d)} " +DEPENDS_virtclass-native_prepend="${@base_deps(d)} " +DEPENDS_virtclass-nativesdk_prepend="${@base_deps(d)} " SCENEFUNCS += "base_scenefunction" |