summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorbrian avery <brian.avery@intel.com>2017-02-07 12:36:12 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-01-04 18:05:06 +0000
commit3b3ba69fe31d1f6d947d36fa6172b9dbff2832ce (patch)
treed277c7d054a7e1205656aa763b480875d81773b0 /bitbake
parent221f067e557440345f1228b86d8675ae93b8f9b6 (diff)
downloadpoky-3b3ba69fe31d1f6d947d36fa6172b9dbff2832ce.tar.gz
bitbake: toaster: move sqlite database to TOASTER_DIR
The toaster.sqlite database was located in TOASTER_DIR/build. This meant that if you named your build directory something else (like cow), Toaster would fail to make/find the database. TOASTER_DIR is on the whitelist unlike BUILDDIR and we need to be able to write there anyway given our current layout so this should not disrupt anything. [YOCTO #9992] (Bitbake rev: 32b13d52ae37be343962cc1cf504f3d569fb1153) Signed-off-by: brian avery <brian.avery@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/toaster/toastermain/settings.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/bitbake/lib/toaster/toastermain/settings.py b/bitbake/lib/toaster/toastermain/settings.py
index aec9dbb925..1fd649c080 100644
--- a/bitbake/lib/toaster/toastermain/settings.py
+++ b/bitbake/lib/toaster/toastermain/settings.py
@@ -38,8 +38,7 @@ ADMINS = (
38 38
39MANAGERS = ADMINS 39MANAGERS = ADMINS
40 40
41TOASTER_SQLITE_DEFAULT_DIR = os.path.join(os.environ.get('TOASTER_DIR', ''), 41TOASTER_SQLITE_DEFAULT_DIR = os.environ.get('TOASTER_DIR')
42 'build')
43 42
44DATABASES = { 43DATABASES = {
45 'default': { 44 'default': {