The previous commit
2c6c9c8 (Remove redundant configuration step of the Kyuafile, 2024-06-03)
broke the CI distcheck which is running `make distcheck'.
The reason is that the Kyuafile was not packed in the dist tarball.
Fix by including it through `EXTRA_DIST'.
Signed-off-by: Nico Sonack <nsonack@herrhotzenplotz.de>
---
Makefile.am | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/Makefile.am b/Makefile.am
index a06133c..e860e7d 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -324,7 +324,9 @@ tests_test_jsongen_LDADD = \
libgcli.la \
$(LIBATFC_LIBS)
-EXTRA_DIST += tests/samples/github_simple_comment.json \
+EXTRA_DIST += \
+ tests/Kyuafile \
+ tests/samples/github_simple_comment.json \
tests/samples/github_simple_fork.json \
tests/samples/github_simple_issue.json \
tests/samples/github_simple_issue.json \
--
2.44.0