From 857b9a55a481cb979dffbf82abbad1031c19cead Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Thu, 28 Mar 2019 17:41:36 +0100 Subject: [PATCH] meson: fix build of immultipress.c with mingw There is no need to escape the quotes since we are not in a shell here and things get passed to the compiler as is. --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 54c3a4304a..eeded30ea7 100644 --- a/meson.build +++ b/meson.build @@ -644,8 +644,8 @@ immodules = [ [ 'inuktitut', [ immodule_srcdir + 'iminuktitut.c' ] ], [ 'ipa', [ immodule_srcdir + 'imipa.c' ] ], [ 'multipress', [ immodule_srcdir + 'gtkimcontextmultipress.c', immodule_srcdir + 'immultipress.c' ], true, - ['-DMULTIPRESS_LOCALEDIR="\"@0@\""'.format(gtk_mplocaledir), - '-DMULTIPRESS_CONFDIR="\"@0@/gtk-3.0\""'.format(gtk_sysconfdir)] ], + ['-DMULTIPRESS_LOCALEDIR="@0@"'.format(gtk_mplocaledir), + '-DMULTIPRESS_CONFDIR="@0@/gtk-3.0"'.format(gtk_sysconfdir)] ], [ 'thai', [ immodule_srcdir + 'thai-charprop.c', immodule_srcdir + 'gtkimcontextthai.c', immodule_srcdir + 'imthai.c' ] ], [ 'ti-er', [ immodule_srcdir + 'imti-er.c' ] ], [ 'ti-et', [ immodule_srcdir + 'imti-et.c' ] ],