summaryrefslogtreecommitdiff
path: root/giscanner/utils.py
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2009-08-17 07:46:22 -0400
committerColin Walters <walters@verbum.org>2009-08-17 07:46:22 -0400
commita1b7488c718cb6a26d1152885d8fbe1e0abb9895 (patch)
treeb5aa123d062ddc27921dd0b9a726123598e317bd /giscanner/utils.py
parentec1af4caa11788442b3b1ffae3d36bc7f53b52b8 (diff)
downloadgobject-introspection-a1b7488c718cb6a26d1152885d8fbe1e0abb9895.tar.gz
Bug 592055 - Build/test fixes
The last few commits regressed 'check'; fix those up.
Diffstat (limited to 'giscanner/utils.py')
-rw-r--r--giscanner/utils.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/giscanner/utils.py b/giscanner/utils.py
index 29a55609..00d7a885 100644
--- a/giscanner/utils.py
+++ b/giscanner/utils.py
@@ -95,7 +95,8 @@ def get_libtool_command(options):
return libtool_path.split(' ')
try:
- subprocess.check_call(['libtool', '--version'])
+ subprocess.check_call(['libtool', '--version'],
+ stdout=open(os.devnull))
except subprocess.CalledProcessError, e:
# If libtool's not installed, assume we don't need it
return None