Merge pull request #142 from MathieuDuponchelle/fix_library_introspection

gnome: Building the gir depends on the dynamic library.
pull/141/head
jpakkane 10 years ago
commit af26390a91
  1. 4
      modules/gnome.py

@ -123,7 +123,9 @@ class GnomeModule:
scan_command += ['--library', libname]
scankwargs = {'output' : girfile,
'input' : libsources,
'command' : scan_command}
'command' : scan_command,
'depends' : girtarget,
}
if kwargs.get('install'):
scankwargs['install'] = kwargs['install']
scankwargs['install_dir'] = os.path.join(state.environment.get_datadir(), 'gir-1.0')

Loading…
Cancel
Save