summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2018-04-05 22:04:43 +0200
committerChristoph Reiter <reiter.christoph@gmail.com>2018-04-05 22:48:47 +0200
commit34a7c7a7cd165997dd6d4ae7b1f90472e0844118 (patch)
tree708a08390429ab4b43d90c50d30d197cc41bb10e
parent6fcae8644b9231edba93d795963a39e3a9612a7e (diff)
downloadpango-34a7c7a7cd165997dd6d4ae7b1f90472e0844118.tar.gz
meson: don't use quotes in help2man options to work around a MinGW Python bug
For some reason MinGW Python (the one running meson) mangles arguments for this case (even adding a space makes it work). Since quotes are not needed here just drop them. Python issue filed upstream: https://github.com/Alexpux/MINGW-packages/issues/3548 https://bugzilla.gnome.org/show_bug.cgi?id=795012
-rw-r--r--pango-view/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/pango-view/meson.build b/pango-view/meson.build
index c607f719..a0043fc7 100644
--- a/pango-view/meson.build
+++ b/pango-view/meson.build
@@ -44,8 +44,8 @@ if help2man.found()
help2man_opts = [
'--no-info',
'--section=1',
- '--help-option="--help-all"',
- '--name="Pango text viewer"',
+ '--help-option=--help-all',
+ '--name=Pango text viewer',
]
custom_target('pango-view.1',