summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgnacio Casal Quinteiro <icq@gnome.org>2014-09-02 12:07:38 +0200
committerIgnacio Casal Quinteiro <icq@gnome.org>2014-09-02 12:07:55 +0200
commit3a5a6dff8238fd10345ba94c255826658f4ea714 (patch)
tree7a5593afaa3216f7326595cc70dd5445cdaec07a
parent1e6dab220ffdba1e3590f92b3bfaf54af9cde574 (diff)
downloadgobject-introspection-3a5a6dff8238fd10345ba94c255826658f4ea714.tar.gz
Fix windows build
-rw-r--r--giscanner/ccompiler.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/giscanner/ccompiler.py b/giscanner/ccompiler.py
index 63110a22..1c66aaca 100644
--- a/giscanner/ccompiler.py
+++ b/giscanner/ccompiler.py
@@ -135,9 +135,9 @@ class CCompiler(object):
# When we are not using Visual C++ (i.e. we are using GCC)...
else:
is_msvc = False
- libtool = get_libtool_command(options)
+ libtool = utils.get_libtool_command(options)
if libtool:
- args.append(which(os.environ.get('SHELL', 'sh.exe')))
+ args.append(utils.which(os.environ.get('SHELL', 'sh.exe')))
args.extend(libtool)
args.append('--mode=execute')
# FIXME: it could have prefix (i686-w64-mingw32-dlltool.exe)