diff options
author | Colin Walters <walters@verbum.org> | 2011-07-05 18:15:30 -0400 |
---|---|---|
committer | Colin Walters <walters@verbum.org> | 2011-07-05 18:15:59 -0400 |
commit | 8300f1dffad7662dbda16f30c1142bc7d46ad3c1 (patch) | |
tree | 24b915f3b20222fffa802b14cb3ac1588a190b2d | |
parent | 7c7a4ab0dbb4e088b4b2edf5ba14326931fcac82 (diff) | |
download | gconf-8300f1dffad7662dbda16f30c1142bc7d46ad3c1.tar.gz |
build: Filter out generated corba code when building .gir
These source files won't have annotations.
-rw-r--r-- | gconf/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gconf/Makefile.am b/gconf/Makefile.am index 7240d124..d6ff2dca 100644 --- a/gconf/Makefile.am +++ b/gconf/Makefile.am @@ -153,7 +153,7 @@ INTROSPECTION_COMPILER_ARGS= --includedir=$(srcdir) if HAVE_INTROSPECTION introspection_files = \ $(gconfinclude_HEADERS) \ - $(filter %.c,$(libgconf_2_la_SOURCES)) + $(filter-out $(CORBA_SOURCECODE), $(filter %.c,$(libgconf_2_la_SOURCES))) GConf-2.0.gir: libgconf-2.la Makefile GConf_2_0_gir_INCLUDES = GObject-2.0 GConf_2_0_gir_CFLAGS = \ |