From 65d69905799dd5572d3b53bf5520e93ed4899efe Mon Sep 17 00:00:00 2001 From: Chun-wei Fan Date: Wed, 13 Sep 2017 19:57:53 +0800 Subject: [PATCH] build: Dist the other required Meson build files Some of the Meson build files are not dist'ed by 'make dist', which are reqired for things to work, and there was a missing '\' that cause some of the meson.build files under tests/ not to be disted. https://bugzilla.gnome.org/show_bug.cgi?id=783210 --- Makefile.am | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 4ea651519..b9accad9f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -89,6 +89,8 @@ meson_build_files = \ gio/tests/de/LC_MESSAGES/meson.build \ gio/win32/meson.build \ gio/xdgmime/meson.build \ + glib/glibconfig.h.in \ + glib/gnulib/meson.build \ glib/libcharset/meson.build \ glib/meson.build \ glib/pcre/meson.build \ @@ -97,7 +99,7 @@ meson_build_files = \ gobject/meson.build \ gobject/tests/meson.build \ gthread/meson.build \ - po/meson.build + po/meson.build \ tests/refcount/meson.build \ tests/meson.build \ tests/gobject/meson.build \