From 909401f4f2dfde61183dfc16991ccdddbdac342f Mon Sep 17 00:00:00 2001 From: Glenn Strauss Date: Wed, 4 Jan 2023 12:27:19 -0500 Subject: [PATCH] [meson] add meson.build to install man pages (fixes #3181) x-ref: "Meson / CMake build issues" https://redmine.lighttpd.net/issues/3181 --- doc/Makefile.am | 1 + doc/meson.build | 1 + meson.build | 1 + 3 files changed, 3 insertions(+) create mode 100644 doc/meson.build diff --git a/doc/Makefile.am b/doc/Makefile.am index 99062b84..f7903aaf 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -5,5 +5,6 @@ GNUMAKEFLAGS=--no-print-directory -s EXTRA_DIST= \ CMakeLists.txt \ initscripts.txt \ + meson.build \ newstyle.css \ oldstyle.css diff --git a/doc/meson.build b/doc/meson.build new file mode 100644 index 00000000..bec4796c --- /dev/null +++ b/doc/meson.build @@ -0,0 +1 @@ +install_man('lighttpd.8', 'lighttpd-angel.8') diff --git a/meson.build b/meson.build index b9cc6465..bd424bda 100644 --- a/meson.build +++ b/meson.build @@ -7,6 +7,7 @@ project( meson_version: '>=0.47.0', ) +subdir('doc') subdir('src') subdir('tests')