From 9d3564ac4479ac6367cf5f12f936edd61a67b114 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Thu, 12 May 2011 12:04:54 -0700 Subject: cache.sqlite: handle readonly more --- pym/portage/cache/sqlite.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/portage/cache/sqlite.py b/pym/portage/cache/sqlite.py index 4eb340bb0..fcc62ff94 100644 --- a/pym/portage/cache/sqlite.py +++ b/pym/portage/cache/sqlite.py @@ -78,7 +78,7 @@ class database(fs_template.FsBased): database=_unicode_decode(self._dbpath), **connection_kwargs) self._db_cursor = self._db_connection.cursor() self._db_cursor.execute("PRAGMA encoding = %s" % self._db_escape_string("UTF-8")) - if not self._ensure_access(self._dbpath): + if not self.readonly and not self._ensure_access(self._dbpath): raise cache_errors.InitializationError(self.__class__, "can't ensure perms on %s" % self._dbpath) self._db_init_cache_size(config["cache_bytes"]) self._db_init_synchronous(config["synchronous"]) -- cgit v1.2.3-1-g7c22