diff options
author | Johan Dahlin <jdahlin@async.com.br> | 2008-11-25 13:01:58 +0000 |
---|---|---|
committer | Johan Dahlin <johan@src.gnome.org> | 2008-11-25 13:01:58 +0000 |
commit | 5f9faf55884a8a32c47ff56165020b6988cc7aa0 (patch) | |
tree | c3b71263bd2a19cf84e367c14e33128fc630450c /tools | |
parent | 6087c1a763f19363789854525796e9e062043948 (diff) | |
download | gobject-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-x | tools/g-ir-scanner | 4 |
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() |