summaryrefslogtreecommitdiff
path: root/giscanner/dumper.py
diff options
context:
space:
mode:
authorJohan Dahlin <jdahlin@async.com.br>2009-01-15 22:31:07 +0000
committerJohan Dahlin <johan@src.gnome.org>2009-01-15 22:31:07 +0000
commit63cd2160c4782a2d419ceeb08c51d7d9955c21f6 (patch)
tree584489d6887824ea08f3a5fec7e451c21cd452cc /giscanner/dumper.py
parent4d320b0b10ccba8c89aa8b2fd4ddc90f99b8688f (diff)
downloadgobject-introspection-63cd2160c4782a2d419ceeb08c51d7d9955c21f6.tar.gz
Bug 567813 – Everything should be versioned
2009-01-15 Johan Dahlin <jdahlin@async.com.br> Bug 567813 – Everything should be versioned * gir/Makefile.am: * girepository/Makefile.am: * girepository/girepository.c (init_globals): * girepository/girparser.c (locate_gir): * giscanner/dumper.py: * giscanner/transformer.py: * gobject-introspection-1.0.pc.in: * tests/everything/Makefile.am: * tests/invoke/Makefile.am: * tests/offsets/Makefile.am: * tests/repository/Makefile.am: * tests/scanner/Makefile.am: * tools/Makefile.am: svn path=/trunk/; revision=1046
Diffstat (limited to 'giscanner/dumper.py')
-rw-r--r--giscanner/dumper.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/giscanner/dumper.py b/giscanner/dumper.py
index 45dcc25f..360ef9d5 100644
--- a/giscanner/dumper.py
+++ b/giscanner/dumper.py
@@ -49,7 +49,7 @@ main(int argc, char **argv)
g_thread_init (NULL);
context = g_option_context_new ("");
- g_option_context_add_main_entries (context, entries, "girepository");
+ g_option_context_add_main_entries (context, entries, "girepository-1.0");
g_option_context_add_group (context, g_irepository_get_option_group ());
if (!g_option_context_parse (context, &argc, &argv, &error))
{
@@ -182,10 +182,10 @@ class DumpCompiler(object):
args.append('-L.')
uninst_builddir = os.environ.get('UNINSTALLED_INTROSPECTION_BUILDDIR')
- # hack for building GIRepository.gir, skip -lgirepository since
- # libgirepository.la is not in current directory and we refer to it
+ # hack for building GIRepository.gir, skip -lgirepository-1.0 since
+ # libgirepository-1.0.la is not in current directory and we refer to it
# explicitly below anyway
- if not uninst_builddir or self._options.libraries[0] != 'girepository':
+ if not uninst_builddir or self._options.libraries[0] != 'girepository-1.0':
# We only use the first library; assume others are "custom"
# libraries like from gir-repository. Right now those don't define
# new GTypes, so we don't need to introspect them.
@@ -194,7 +194,7 @@ class DumpCompiler(object):
# hack for building gobject-introspection itself
if uninst_builddir:
path = os.path.join(uninst_builddir, 'girepository',
- 'libgirepository.la')
+ 'libgirepository-1.0.la')
args.append(path)
args.extend(self._run_pkgconfig('--libs'))