aboutsummaryrefslogtreecommitdiffstats
path: root/classes/autotools.bbclass
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-06-23 14:47:49 -0700
committerChris Larson <chris_larson@mentor.com>2010-06-24 10:15:07 -0700
commit0cf498e7c864088c052035932541ceec28f04984 (patch)
tree61e271a3ec15d12dcf7e492fed3779c3184bf8c1 /classes/autotools.bbclass
parent3950ba031a640a308c14d128ff96ad7d4027903e (diff)
downloadopenembedded-0cf498e7c864088c052035932541ceec28f04984.tar.gz
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/autotools.bbclass')
-rw-r--r--classes/autotools.bbclass8
1 files changed, 4 insertions, 4 deletions
diff --git a/classes/autotools.bbclass b/classes/autotools.bbclass
index 8a5b982bc2..754fb875cb 100644
--- a/classes/autotools.bbclass
+++ b/classes/autotools.bbclass
@@ -1,7 +1,7 @@
# use autotools_stage_all for native packages
AUTOTOOLS_NATIVE_STAGE_INSTALL = "1"
-def autotools_dep_prepend(d):
+def autotools_deps(d):
if bb.data.getVar('INHIBIT_AUTOTOOLS_DEPS', d, 1):
return ''
@@ -24,9 +24,9 @@ def autotools_dep_prepend(d):
EXTRA_OEMAKE = ""
-DEPENDS_prepend = "${@autotools_dep_prepend(d)}"
-DEPENDS_virtclass-native_prepend = "${@autotools_dep_prepend(d)}"
-DEPENDS_virtclass-nativesdk_prepend = "${@autotools_dep_prepend(d)}"
+DEPENDS_prepend = "${@autotools_deps(d)}"
+DEPENDS_virtclass-native_prepend = "${@autotools_deps(d)}"
+DEPENDS_virtclass-nativesdk_prepend = "${@autotools_deps(d)}"
inherit siteinfo