summaryrefslogtreecommitdiff
path: root/giscanner/dumper.py
diff options
context:
space:
mode:
authorJohan Dahlin <jdahlin@async.com.br>2008-12-12 18:29:55 +0000
committerJohan Dahlin <johan@src.gnome.org>2008-12-12 18:29:55 +0000
commit6ae11e8edbd5ca6783fb6166b2b921fac06ebdc3 (patch)
treed96179b159c2b053547e5b5e05233f1812f79d16 /giscanner/dumper.py
parent200e437d4f37123e78faab0ede4372184fb7b4ee (diff)
downloadgobject-introspection-6ae11e8edbd5ca6783fb6166b2b921fac06ebdc3.tar.gz
Pass in --tag=CC to libtool to avoid making libtool confused when CC is
2008-12-12 Johan Dahlin <jdahlin@async.com.br> * giscanner/dumper.py (DumpCompiler._link): Pass in --tag=CC to libtool to avoid making libtool confused when CC is different from gcc on some systems. svn path=/trunk/; revision=993
Diffstat (limited to 'giscanner/dumper.py')
-rw-r--r--giscanner/dumper.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/giscanner/dumper.py b/giscanner/dumper.py
index 3ed58554..45dcc25f 100644
--- a/giscanner/dumper.py
+++ b/giscanner/dumper.py
@@ -170,6 +170,7 @@ class DumpCompiler(object):
if libtool:
args.extend(libtool)
args.append('--mode=link')
+ args.append('--tag=CC')
args.extend([self._linker_cmd, '-o', output])