diff options
author | Damien Lespiau <damien.lespiau@intel.com> | 2010-03-22 12:53:18 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2010-03-22 12:53:18 -0400 |
commit | 0a0e0a868acaeb09b5a16c66bc427df9fd8ea3a5 (patch) | |
tree | 8aef92e9a893cd1470b7b1eef594de4345d483d4 /gdk-pixbuf | |
parent | 086b952267eb5abc577b67bf9597f3ddbfb3f04c (diff) | |
download | gtk+-0a0e0a868acaeb09b5a16c66bc427df9fd8ea3a5.tar.gz |
introspection: Fix parallel builds
One needs to add an explicit dependency between the gir files and the
.la libtool wrapper as this dependency is not added automatically by
Makefile.introspection. Not adding these breaks parallel builds as make
does not wait for the .la to be generated before launching g-ir-scanner.
Diffstat (limited to 'gdk-pixbuf')
-rw-r--r-- | gdk-pixbuf/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdk-pixbuf/Makefile.am b/gdk-pixbuf/Makefile.am index 58685dcb9e..cf1769bae9 100644 --- a/gdk-pixbuf/Makefile.am +++ b/gdk-pixbuf/Makefile.am @@ -691,6 +691,7 @@ EXTRA_DIST += \ if HAVE_INTROSPECTION +GdkPixbuf-2.0.gir: libgdk_pixbuf-2.0.la Makefile GdkPixbuf_2_0_gir_SCANNERFLAGS = --strip-prefix=Gdk GdkPixbuf_2_0_gir_INCLUDES = GModule-2.0 Gio-2.0 GdkPixbuf_2_0_gir_LIBS = libgdk_pixbuf-2.0.la |