diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2009-07-30 18:03:51 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-07-30 18:03:51 +0100 |
commit | ef9c095334632b8576667800d52b842f1cbf52ea (patch) | |
tree | 7a01161db220a78235b87dfc5c4417f5b714d3ea /bitbake | |
parent | 64b04685b6fd029f2f70f7017bfd51d26ccb0d11 (diff) | |
download | poky-ef9c095334632b8576667800d52b842f1cbf52ea.tar.gz |
bitbake: Make sure tables exist when renaming
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/persist_data.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/bb/persist_data.py b/bitbake/lib/bb/persist_data.py index ea921072cd..1d60a0a139 100644 --- a/bitbake/lib/bb/persist_data.py +++ b/bitbake/lib/bb/persist_data.py | |||
@@ -76,6 +76,7 @@ class PersistData: | |||
76 | """ | 76 | """ |
77 | 77 | ||
78 | self.connection.execute("DROP TABLE IF EXISTS %s;" % newdomain) | 78 | self.connection.execute("DROP TABLE IF EXISTS %s;" % newdomain) |
79 | self.addDomain(domain) | ||
79 | self.connection.execute("ALTER TABLE %s RENAME TO %s;" % (domain, newdomain)) | 80 | self.connection.execute("ALTER TABLE %s RENAME TO %s;" % (domain, newdomain)) |
80 | 81 | ||
81 | def getKeyValues(self, domain): | 82 | def getKeyValues(self, domain): |