aboutsummaryrefslogtreecommitdiffstats
path: root/classes/base.bbclass
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-12-09 01:08:40 +0000
committerChris Larson <clarson@kergoth.com>2004-12-09 01:08:40 +0000
commit00f6a165aeeab027ba0361f2d9601cb359d73726 (patch)
treef6b2d21b56d7c3edcd5d0c79f2a5b5f4f1fb0137 /classes/base.bbclass
parentd5e1c8f0a7f8dead22fa2cde9ff86a96a59346c3 (diff)
downloadopenembedded-00f6a165aeeab027ba0361f2d9601cb359d73726.tar.gz
More rename updates.
BKrev: 41b7a598bGnuzf3sKWuCwtAE9oItIw
Diffstat (limited to 'classes/base.bbclass')
-rw-r--r--classes/base.bbclass5
1 files changed, 3 insertions, 2 deletions
diff --git a/classes/base.bbclass b/classes/base.bbclass
index 09710b0a8b..9ab1fdc7b0 100644
--- a/classes/base.bbclass
+++ b/classes/base.bbclass
@@ -465,13 +465,14 @@ python base_eventhandler() {
addtask configure after do_unpack do_patch
do_configure[dirs] = "${S} ${B}"
-
+do_configure[bbdepcmd] = "do_populate_staging"
base_do_configure() {
:
}
addtask compile after do_configure
do_compile[dirs] = "${S} ${B}"
+do_compile[bbdepcmd] = "do_populate_staging"
base_do_compile() {
if [ -e Makefile -o -e makefile ]; then
oe_runmake || die "make failed"
@@ -682,7 +683,7 @@ addtask emit_manifest
python do_emit_manifest () {
# FIXME: emit a manifest here
# 1) adjust PATH to hit the wrapper scripts
- wrappers = bb.which(bb.data.getVar("OEPATH", d, 1), 'build/install', 0)
+ wrappers = bb.which(bb.data.getVar("BBPATH", d, 1), 'build/install', 0)
path = (bb.data.getVar('PATH', d, 1) or '').split(':')
path.insert(0, os.path.dirname(wrappers))
bb.data.setVar('PATH', ':'.join(path), d)