Do not dist gir_DATA
authorYaakov Selkowitz <yselkowitz@users.sourceforge.net>
Wed, 16 Jun 2010 02:18:38 +0000 (21:18 -0500)
committerJohan Dahlin <jdahlin@litl.com>
Mon, 6 Sep 2010 04:33:54 +0000 (01:33 -0300)
GIR files contain a shared-library attribute which varies per platform,
and therefore must not be disted; see bug 621211 for rationale.

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

atk/Makefile.am

index a900965..0f696e4 100644 (file)
@@ -168,12 +168,12 @@ Atk_1_0_gir_FILES = \
 INTROSPECTION_GIRS += Atk-1.0.gir
 
 girdir = $(datadir)/gir-1.0
-dist_gir_DATA = $(INTROSPECTION_GIRS)
+gir_DATA = $(INTROSPECTION_GIRS)
 
 typelibsdir = $(libdir)/girepository-1.0
 typelibs_DATA = $(INTROSPECTION_GIRS:.gir=.typelib)
 
-CLEANFILES += $(dist_gir_DATA) $(typelibs_DATA)
+CLEANFILES += $(gir_DATA) $(typelibs_DATA)
 endif
 
 # ---------- Win32 stuff ----------