summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndoni Morales Alastruey <ylatuya@gmail.com>2013-04-25 12:30:31 +0200
committerAndoni Morales Alastruey <ylatuya@gmail.com>2013-04-25 12:30:31 +0200
commit267569bd140c20590c8d442f6aba17357914ba06 (patch)
tree77236c6fd320374109ef4fc332e3b5ab05f7ded8
parent0db73243f7d4b1d75c40c7d339e7477fd96d9b67 (diff)
config: expand user dir for the gstreamer registry
-rw-r--r--cerbero/config.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/cerbero/config.py b/cerbero/config.py
index 310ffa7..eb3ab7e 100644
--- a/cerbero/config.py
+++ b/cerbero/config.py
@@ -193,6 +193,7 @@ class Config (object):
gstregistry10 = os.path.join('~', '.cache', 'gstreamer-1.0',
'cerbero-registry-%s' % self.target_arch)
gstregistry = os.path.expanduser(gstregistry)
+ gstregistry10 = os.path.expanduser(gstregistry10)
pythonpath = os.path.join(prefix, py_prefix, 'site-packages')
if self.platform == Platform.LINUX: