summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJohan Dahlin <jdahlin@async.com.br>2008-11-25 13:01:58 +0000
committerJohan Dahlin <johan@src.gnome.org>2008-11-25 13:01:58 +0000
commit5f9faf55884a8a32c47ff56165020b6988cc7aa0 (patch)
treec3b71263bd2a19cf84e367c14e33128fc630450c /tools
parent6087c1a763f19363789854525796e9e062043948 (diff)
downloadgobject-introspection-5f9faf55884a8a32c47ff56165020b6988cc7aa0.tar.gz
Execute the dumper program through libtool if it's installed, so we avoid
2008-11-25 Johan Dahlin <jdahlin@async.com.br> * giscanner/glibtransformer.py: * tools/g-ir-scanner: Execute the dumper program through libtool if it's installed, so we avoid loading the installed version. svn path=/trunk/; revision=964
Diffstat (limited to 'tools')
-rwxr-xr-xtools/g-ir-scanner4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/g-ir-scanner b/tools/g-ir-scanner
index 0f460183..0e2d4148 100755
--- a/tools/g-ir-scanner
+++ b/tools/g-ir-scanner
@@ -304,7 +304,9 @@ def main(args):
# Transform the C AST nodes into higher level
# GLib/GObject nodes
- glibtransformer = GLibTransformer(transformer, noclosure=options.noclosure)
+ glibtransformer = GLibTransformer(transformer,
+ noclosure=options.noclosure,
+ nolibtool=options.nolibtool)
glibtransformer.set_introspection_binary(binary)
namespace = glibtransformer.parse()