You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.2 KiB
33 lines
1.2 KiB
2 years ago
|
From 3a8d6e4bc90e899f751b881dc949e79daeeb04bb Mon Sep 17 00:00:00 2001
|
||
|
From: Dan Williams <dan.j.williams@intel.com>
|
||
|
Date: Fri, 7 Jan 2022 11:31:06 -0800
|
||
|
Subject: [PATCH 085/217] ndctl/build: Default asciidoctor to enabled
|
||
|
|
||
|
The autotools build infra previously defaulted asciidoctor to enabled, do
|
||
|
the same for Meson.
|
||
|
|
||
|
Link: https://lore.kernel.org/r/164158386600.302694.5479584050156277551.stgit@dwillia2-desk3.amr.corp.intel.com
|
||
|
Reported-by: Vishal Verma <vishal.l.verma@intel.com>
|
||
|
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
|
||
|
Signed-off-by: Vishal Verma <vishal.l.verma@intel.com>
|
||
|
---
|
||
|
meson_options.txt | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/meson_options.txt b/meson_options.txt
|
||
|
index 95312bf..aa4a6dc 100644
|
||
|
--- a/meson_options.txt
|
||
|
+++ b/meson_options.txt
|
||
|
@@ -1,7 +1,7 @@
|
||
|
option('version-tag', type : 'string',
|
||
|
description : 'override the git version string')
|
||
|
option('docs', type : 'feature', value : 'enabled')
|
||
|
-option('asciidoctor', type : 'feature', value : 'disabled')
|
||
|
+option('asciidoctor', type : 'feature', value : 'enabled')
|
||
|
option('systemd', type : 'feature', value : 'enabled')
|
||
|
option('keyutils', type : 'feature', value : 'enabled',
|
||
|
description : 'enable nvdimm device passphrase management')
|
||
|
--
|
||
|
2.27.0
|
||
|
|