Everything seems fine except:
- libalpm.pc now contains:
/usr/lib/gcc/x86_64-pc-msys/9.3.0/../../../../lib/libintl.a
18 lines
649 B
Diff
18 lines
649 B
Diff
a2x seems to fail when a value to an argument looks like an argument itself.
|
|
The best fix seems to be to attach the value to the argument using an equal
|
|
sign.
|
|
|
|
https://bugs.python.org/issue9334
|
|
|
|
--- pacman-5.2.1/doc/meson.build 2019-08-12 03:26:42.000000000 +0200
|
|
+++ pacman-5.2.1/doc/meson.build 2020-05-16 09:46:38.677111500 +0200
|
|
@@ -57,7 +57,7 @@
|
|
'-f', 'manpage',
|
|
'--xsltproc-opts', '-param man.endnotes.list.enabled 0 -param man.endnotes.are.numbered 0',
|
|
'-D', '@OUTDIR@',
|
|
- '--asciidoc-opts', ' '.join(asciidoc_opts),
|
|
+ '--asciidoc-opts=' + ' '.join(asciidoc_opts),
|
|
'@INPUT@',
|
|
],
|
|
input : input,
|