From 869a6274a85b9e18341e951d1111a667edbe0a68 Mon Sep 17 00:00:00 2001 From: Michel Zou Date: Sun, 6 Dec 2020 12:35:42 +0100 Subject: [PATCH] meson: fix multiline string warning gets rid of: WARNING: Newline character in a string detected, use ''' (three single quotes) for multiline strings instead. Reviewed-by: Yevhenii Kharchenko Part-of: --- meson_options.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson_options.txt b/meson_options.txt index 67fabb9473b..db13dfa4da3 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -204,12 +204,12 @@ option( 'shader-cache-max-size', type : 'string', value : '', - description : 'Default value for MESA_GLSL_CACHE_MAX_SIZE enviroment variable. + description : '''Default value for MESA_GLSL_CACHE_MAX_SIZE enviroment variable. If set, determines the maximum size of the on-disk cache of compiled GLSL programs, can be overriden by enviroment variable if needed. Should be set to a number optionally followed by ``K``, ``M``, or ``G`` to specify a size in kilobytes, megabytes, or gigabytes. By default, gigabytes will be assumed. And if unset, a - maximum size of 1GB will be used.' + maximum size of 1GB will be used.''' ) option( 'vulkan-icd-dir',