summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2017-07-17 10:11:48 +0100
committerEmmanuele Bassi <ebassi@gnome.org>2017-07-17 10:11:48 +0100
commit46e8b1cfad0012be1d74a32ded0f5f873599b2b4 (patch)
treee9ac72e3c85c963e4cbcf1b067df9f9140c19ed7
parent5398ecfe3f0fa84e609ea7ad174c175e21b951a5 (diff)
downloadlibnotify-46e8b1cfad0012be1d74a32ded0f5f873599b2b4.tar.gz
build: Update the list of headers in srcdir
The generated notify-features.h header lives in builddir, which means it does not exist in srcdir, where glib-mkenums will look. It also contains pre-processor symbols only, so it's not really useful. As we removed it from the list of headers to be scanned by the introspection parser, we also need to update the files rules for that.
-rw-r--r--libnotify/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/libnotify/Makefile.am b/libnotify/Makefile.am
index 0e8688f..33bcd00 100644
--- a/libnotify/Makefile.am
+++ b/libnotify/Makefile.am
@@ -16,11 +16,11 @@ lib_LTLIBRARIES = libnotify.la
notify_headers = \
notify.h \
- notify-features.h \
notification.h
notifyinc_HEADERS = \
$(notify_headers) \
+ notify-features.h \
$(ENUM_FILE).h
noinst_HEADERS = \
@@ -92,7 +92,7 @@ INTROSPECTION_COMPILER_ARGS = --includedir=$(top_srcdir)
Notify-0.7.gir: libnotify.la
Notify_0_7_gir_INCLUDES = GLib-2.0 GdkPixbuf-2.0
Notify_0_7_gir_LIBS = libnotify.la
-Notify_0_7_gir_FILES = $(notify_headers) $(libnotify_la_SOURCES)
+Notify_0_7_gir_FILES = $(notifyinc_HEADERS) $(libnotify_la_SOURCES)
Notify_0_7_gir_PACKAGES = glib-2.0 gobject-2.0 gdk-pixbuf-2.0
Notify_0_7_gir_EXPORT_PACKAGES = libnotify
Notify_0_7_gir_SCANNERFLAGS = --c-include "libnotify/notify.h"