Do not dist gir_DATA
authorYaakov Selkowitz <yselkowitz@users.sourceforge.net>
Wed, 16 Jun 2010 04:10:13 +0000 (23:10 -0500)
committerDan Winship <danw@gnome.org>
Fri, 30 Jul 2010 14:32:14 +0000 (16:32 +0200)
GIR files contain a shared-library attribute which varies per platform,
and therefore must not be disted; see bug 621611 for rationale.

https://bugzilla.gnome.org/show_bug.cgi?id=621727

libsoup/Makefile.am

index 2e7c1fb..26af4bf 100644 (file)
@@ -249,12 +249,12 @@ INTROSPECTION_GIRS += SoupGNOME-2.4.gir
 endif
 
 girdir = $(datadir)/gir-1.0
-dist_gir_DATA = $(INTROSPECTION_GIRS)
+gir_DATA = $(INTROSPECTION_GIRS)
 
 typelibdir = $(libdir)/girepository-1.0
 typelib_DATA = $(INTROSPECTION_GIRS:.gir=.typelib)
 
-CLEANFILES += $(dist_gir_DATA) $(typelib_DATA)
+CLEANFILES += $(gir_DATA) $(typelib_DATA)
 
 endif