summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/tests/runqueue-tests/conf/bitbake.conf
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/tests/runqueue-tests/conf/bitbake.conf')
-rw-r--r--bitbake/lib/bb/tests/runqueue-tests/conf/bitbake.conf3
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/bb/tests/runqueue-tests/conf/bitbake.conf b/bitbake/lib/bb/tests/runqueue-tests/conf/bitbake.conf
index 5e451fc2c0..efebf001a9 100644
--- a/bitbake/lib/bb/tests/runqueue-tests/conf/bitbake.conf
+++ b/bitbake/lib/bb/tests/runqueue-tests/conf/bitbake.conf
@@ -1,7 +1,8 @@
1CACHE = "${TOPDIR}/cache" 1CACHE = "${TOPDIR}/cache"
2THISDIR = "${@os.path.dirname(d.getVar('FILE'))}" 2THISDIR = "${@os.path.dirname(d.getVar('FILE'))}"
3COREBASE := "${@os.path.normpath(os.path.dirname(d.getVar('FILE')+'/../../'))}" 3COREBASE := "${@os.path.normpath(os.path.dirname(d.getVar('FILE')+'/../../'))}"
4BBFILES = "${COREBASE}/recipes/*.bb" 4EXTRA_BBFILES ?= ""
5BBFILES = "${COREBASE}/recipes/*.bb ${EXTRA_BBFILES}"
5PROVIDES = "${PN}" 6PROVIDES = "${PN}"
6PN = "${@bb.parse.vars_from_file(d.getVar('FILE', False),d)[0]}" 7PN = "${@bb.parse.vars_from_file(d.getVar('FILE', False),d)[0]}"
7PF = "${BB_CURRENT_MC}:${PN}" 8PF = "${BB_CURRENT_MC}:${PN}"