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>
This commit is contained in:
Michel Zou 2020-12-06 12:35:42 +01:00 committed by Marge Bot
parent 445b4d13bd
commit 869a6274a8
1 changed files with 2 additions and 2 deletions

View File

@ -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',