summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorРуслан Ижбулатов <lrn1986@gmail.com>2014-02-21 11:17:58 +0000
committerColin Walters <walters@verbum.org>2014-02-27 08:46:05 -0500
commit938fa8f273e2e7ac6557d7f9e0daee545b8c18b7 (patch)
treea96b5cfbfba55b854639189c80655a567e106fbe
parent2959fd6db9b8f255cc53ed1c943066d4006c7913 (diff)
downloadgobject-introspection-938fa8f273e2e7ac6557d7f9e0daee545b8c18b7.tar.gz
scanner: Make sure .libs directory exists
https://bugzilla.gnome.org/show_bug.cgi?id=724882
-rw-r--r--giscanner/dumper.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/giscanner/dumper.py b/giscanner/dumper.py
index 85e8a2a2..ce119619 100644
--- a/giscanner/dumper.py
+++ b/giscanner/dumper.py
@@ -103,6 +103,7 @@ class DumpCompiler(object):
# We have to use the current directory to work around Unix
# sysadmins who mount /tmp noexec
tmpdir = tempfile.mkdtemp('', 'tmp-introspect', dir=os.getcwd())
+ os.mkdir(os.path.join(tmpdir, '.libs'))
tpl_args = {}
if self._uninst_srcdir is not None: