51 lines
2.0 KiB
Diff
51 lines
2.0 KiB
Diff
From b3dbe8179b0f73d09bb90cbf92e991a187ef3534 Mon Sep 17 00:00:00 2001
|
|
From: Kevin Wolf <kwolf@redhat.com>
|
|
Date: Tue, 16 Feb 2021 16:19:41 -0500
|
|
Subject: [PATCH 15/54] docs: Add qemu-storage-daemon(1) manpage to meson.build
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
RH-Author: Kevin Wolf <kwolf@redhat.com>
|
|
Message-id: <20210216161943.126728-4-kwolf@redhat.com>
|
|
Patchwork-id: 101104
|
|
O-Subject: [RHEL-AV-8.4.0 qemu-kvm PATCH 3/5] docs: Add qemu-storage-daemon(1) manpage to meson.build
|
|
Bugzilla: 1901323
|
|
RH-Acked-by: Sergio Lopez Pascual <slp@redhat.com>
|
|
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
|
|
RH-Acked-by: Max Reitz <mreitz@redhat.com>
|
|
|
|
From: Peter Maydell <peter.maydell@linaro.org>
|
|
|
|
In commit 1982e1602d15 we added a new qemu-storage-daemon(1) manpage.
|
|
At the moment new manpages have to be listed both in the conf.py for
|
|
Sphinx and also in docs/meson.build for Meson. We forgot the second
|
|
of those -- correct the omission.
|
|
|
|
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
|
|
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
|
|
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
|
|
Message-id: 20210108161416.21129-2-peter.maydell@linaro.org
|
|
(cherry picked from commit fa56cf7e86f99d5557a4fb730e375777b89d8b50)
|
|
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
|
|
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
|
|
---
|
|
docs/meson.build | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/docs/meson.build b/docs/meson.build
|
|
index 71641b4fe0..fae9849b79 100644
|
|
--- a/docs/meson.build
|
|
+++ b/docs/meson.build
|
|
@@ -62,6 +62,7 @@ if build_docs
|
|
'qemu-img.1': (have_tools ? 'man1' : ''),
|
|
'qemu-nbd.8': (have_tools ? 'man8' : ''),
|
|
'qemu-pr-helper.8': (have_tools ? 'man8' : ''),
|
|
+ 'qemu-storage-daemon.1': (have_tools ? 'man1' : ''),
|
|
'qemu-trace-stap.1': (config_host.has_key('CONFIG_TRACE_SYSTEMTAP') ? 'man1' : ''),
|
|
'virtfs-proxy-helper.1': (have_virtfs_proxy_helper ? 'man1' : ''),
|
|
'virtiofsd.1': (have_virtiofsd ? 'man1' : ''),
|
|
--
|
|
2.27.0
|
|
|