On Sat, Jun 29, 2024 at 01:04:52PM GMT, Lucas De Marchi wrote:
On Tue, Jun 11, 2024 at 04:05:03PM GMT, Emil Velikov via B4 Relay wrote:
From: Emil Velikov <emil.l.velikov@xxxxxxxxx>
Note that scdoc does not handle natively handle the dummy
modules.dep.bin.5 entry, so we need to create one manually.
Not a big deal, since it's single static line anyway.
Also: pkg-config --variable=scdoc scdoc, produces the full executable
and path, although for now we stick with the AC_PATH_PROG approach.
Signed-off-by: Emil Velikov <emil.l.velikov@xxxxxxxxx>
---
configure.ac | 2 +-
man/Makefile.am | 24 ++++++++----------------
man/modules.dep.bin.5 | 1 +
3 files changed, 10 insertions(+), 17 deletions(-)
diff --git a/configure.ac b/configure.ac
index 9527aa2..dcf7479 100644
--- a/configure.ac
+++ b/configure.ac
@@ -32,7 +32,7 @@ AC_PROG_SED
AC_PROG_MKDIR_P
AC_PROG_LN_S
PKG_PROG_PKG_CONFIG
-AC_PATH_PROG([XSLTPROC], [xsltproc])
+AC_PATH_PROG([SCDOC], [scdoc])
we should fail it if scdoc is not found and --disable-manpages
I added a patch on top to make it a required tool
+AM_V_SCDOC_ = $(AM_V_SCDOR_$(AM_DEFAULT_VERBOSITY))
^ typo here,
and squashed this fix in your patch.
Applied patches 2, 3 and 4 for now.
Lucas De Marchi