[pango] meson: don't use quotes in help2man options to work around a MinGW Python bug



commit 34a7c7a7cd165997dd6d4ae7b1f90472e0844118
Author: Christoph Reiter <reiter christoph gmail com>
Date:   Thu Apr 5 22:04:43 2018 +0200

    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

 pango-view/meson.build |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/pango-view/meson.build b/pango-view/meson.build
index c607f71..a0043fc 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',


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]