From efe31dfecfde3b97c5517365d2415eef83b85513 Mon Sep 17 00:00:00 2001 From: Alex Date: Sat, 4 Jul 2026 01:13:21 +0200 Subject: [PATCH] build: install wayfire man pages (register in meson man_files) The wayfire window/workspaces man pages existed but were never added to man_files, so they were never installed. Fixes #4264. --- meson.build | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/meson.build b/meson.build index a0fad843..5563d610 100644 --- a/meson.build +++ b/meson.build @@ -384,6 +384,10 @@ if true 'src/modules/wayfire/window.cpp', 'src/modules/wayfire/workspaces.cpp', ) + man_files += files( + 'man/waybar-wayfire-window.5.scd', + 'man/waybar-wayfire-workspaces.5.scd', + ) endif if get_option('login-proxy')