diff options
author | Michel Zou <xantares09@hotmail.com> | 2020-12-06 12:35:42 +0100 |
---|---|---|
committer | Marge Bot <eric+marge@anholt.net> | 2020-12-08 19:42:46 +0000 |
commit | 869a6274a85b9e18341e951d1111a667edbe0a68 (patch) | |
tree | a33e0ac99e746488e8a4b9756ec4fd7de778c9c9 /meson_options.txt | |
parent | 445b4d13bde1a00546c41fe82745cde4446d9f7d (diff) | |
download | mesa-869a6274a85b9e18341e951d1111a667edbe0a68.tar.gz |
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 <yevhenii.kharchenko@globallogic.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7946>
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 4 |
1 files 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', |