summaryrefslogtreecommitdiffstats
path: root/classes/base.bbclass
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-10-27 17:32:26 -0700
committerChris Larson <chris_larson@mentor.com>2011-01-26 14:28:53 -0700
commitaf5f4debf19be227c63d5cc89e4acd2961469724 (patch)
treef06deae8d0a72952d78fa3605e412f354a36446c /classes/base.bbclass
parent0bf1d00fb4e2b36dc3c25194bdddc6d95300caf4 (diff)
downloadopenembedded-af5f4debf19be227c63d5cc89e4acd2961469724.tar.gz
Add install wrapper rather than coreutils-native
Signed-off-by: Chris Larson <chris_larson@mentor.com> Acked-by: Khem Raj <raj.khem@gmail.com> Acked-by: Eric BĂ©nard <eric@eukrea.com> Acked-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'classes/base.bbclass')
-rw-r--r--classes/base.bbclass28
1 files changed, 9 insertions, 19 deletions
diff --git a/classes/base.bbclass b/classes/base.bbclass
index fdffcfabaa..fc962eec72 100644
--- a/classes/base.bbclass
+++ b/classes/base.bbclass
@@ -57,33 +57,23 @@ oe_runmake() {
}
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
- # that case though.
- #
- deps = "coreutils-native"
- if bb.data.getVar('PN', d, True) in ("shasum-native", "coreutils-native"):
- deps = ""
-
# INHIBIT_DEFAULT_DEPS doesn't apply to the patch command. Whether or not
# we need that built is the responsibility of the patch function / class, not
# the application.
if not bb.data.getVar('INHIBIT_DEFAULT_DEPS', d):
if (bb.data.getVar('HOST_SYS', d, 1) !=
- bb.data.getVar('BUILD_SYS', d, 1)):
- deps += " virtual/${TARGET_PREFIX}gcc virtual/libc "
+ bb.data.getVar('BUILD_SYS', d, 1)):
+ return "virtual/${TARGET_PREFIX}gcc virtual/libc"
elif bb.data.inherits_class('native', d) and \
bb.data.getVar('PN', d, True) not in \
("linux-libc-headers-native", "quilt-native",
- "unifdef-native", "shasum-native",
- "coreutils-native"):
- deps += " linux-libc-headers-native"
- return deps
+ "unifdef-native", "shasum-native"):
+ return "linux-libc-headers-native"
+ return ""
-DEPENDS_prepend="${@base_deps(d)} "
-DEPENDS_virtclass-native_prepend="${@base_deps(d)} "
-DEPENDS_virtclass-nativesdk_prepend="${@base_deps(d)} "
+DEPENDS_prepend = "${@base_deps(d)} "
+DEPENDS_virtclass-native_prepend = "${@base_deps(d)} "
+DEPENDS_virtclass-nativesdk_prepend = "${@base_deps(d)} "
SCENEFUNCS += "base_scenefunction"
@@ -92,7 +82,7 @@ SCENEFUNCS[type] = "list"
python base_scenefunction () {
stamp = bb.data.getVar('STAMP', d, 1) + ".needclean"
if os.path.exists(stamp):
- bb.build.exec_func("do_clean", d)
+ bb.build.exec_func("do_clean", d)
}
python base_do_setscene () {