diff options
author | Colin Walters <walters@verbum.org> | 2010-10-18 13:02:41 -0400 |
---|---|---|
committer | Colin Walters <walters@verbum.org> | 2010-10-18 13:02:41 -0400 |
commit | d34b9ed1924bbc9666b6e9f456537319d02d5830 (patch) | |
tree | 253ee21c48230ccb83e0cc9c4b362a7a690206bf /gtk | |
parent | 8cca398a2f54d625e6eaa73d3380e10df7e986ca (diff) | |
download | gtk+-d34b9ed1924bbc9666b6e9f456537319d02d5830.tar.gz |
introspection: Filter out all headers ending in "private"
We were including at least "gtkprivate.h" before.
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/Makefile.am b/gtk/Makefile.am index d6bf610366..4943fb5041 100644 --- a/gtk/Makefile.am +++ b/gtk/Makefile.am @@ -895,7 +895,7 @@ LDADDS = \ if HAVE_INTROSPECTION introspection_files = \ - $(filter-out gtktextlayout.h, $(gtkinclude_HEADERS)) \ + $(filter-out %private.h gtktextlayout.h, $(gtkinclude_HEADERS)) \ $(gtk_base_c_sources) \ gtktypebuiltins.h \ gtktypebuiltins.c |