mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-01 23:13:40 +02:00
Doc: Fix missing glibconfig.h when builddir!=srcdir
Currently the doc is incomplete when builddir!=srcdir (e.g. debian package) because glibconfig.h is generared from configure.ac and is thus missing from srcdir. This leads to missing doc for symbols like G_GINT64_FORMAT. https://bugzilla.gnome.org/show_bug.cgi?id=734469
This commit is contained in:
@@ -13,10 +13,11 @@ SCAN_OPTIONS=--deprecated-guards="G_DISABLE_DEPRECATED" \
|
||||
--ignore-decorators="G_GNUC_WARN_UNUSED_RESULT"
|
||||
|
||||
# The directory containing the source code. Relative to $(srcdir)
|
||||
DOC_SOURCE_DIR=$(top_srcdir)/gio
|
||||
DOC_SOURCE_DIR =$(top_srcdir)/gio $(top_builddir)/gio
|
||||
|
||||
BUILT_HFILES=gioenumtypes.h
|
||||
HFILE_GLOB=$(top_srcdir)/gio/*.h
|
||||
HFILE_GLOB= \
|
||||
$(top_srcdir)/gio/*.h \
|
||||
$(top_builddir)/gio/gioenumtypes.h
|
||||
CFILE_GLOB=$(top_srcdir)/gio/*.c
|
||||
|
||||
IGNORE_HFILES = \
|
||||
|
Reference in New Issue
Block a user