summaryrefslogtreecommitdiffstats
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:04:09 +0000
commit32b13d52ae37be343962cc1cf504f3d569fb1153 (patch)
tree060a4321d7c6248a16990b11a0aa8b8fb1871b25
parent30da2715cd6a114faf99b09c74e73c5d84767b91 (diff)
downloadbitbake-32b13d52ae37be343962cc1cf504f3d569fb1153.tar.gz
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] Signed-off-by: brian avery <brian.avery@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/toaster/toastermain/settings.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/toaster/toastermain/settings.py b/lib/toaster/toastermain/settings.py
index aec9dbb92..1fd649c08 100644
--- a/lib/toaster/toastermain/settings.py
+++ b/lib/toaster/toastermain/settings.py
@@ -38,8 +38,7 @@ ADMINS = (
MANAGERS = ADMINS
-TOASTER_SQLITE_DEFAULT_DIR = os.path.join(os.environ.get('TOASTER_DIR', ''),
- 'build')
+TOASTER_SQLITE_DEFAULT_DIR = os.environ.get('TOASTER_DIR')
DATABASES = {
'default': {