meson_options: Bump max value of platform-sdk-version to 31

During building Android-12, the following error appears:
meson.build:21:0: ERROR: New value 31 is more than maximum value 30.

Signed-off-by: Roman Stratiienko <r.stratiienko@gmail.com>
Acked-by: Emil Velikov <emil.l.velikov@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13216>
This commit is contained in:
Roman Stratiienko 2021-10-06 10:14:33 +03:00 committed by Marge Bot
parent 6a16b6a74c
commit f1c322c269
1 changed files with 1 additions and 1 deletions

View File

@ -482,7 +482,7 @@ option(
'platform-sdk-version',
type : 'integer',
min : 25,
max : 30,
max : 31,
value : 25,
description : 'Android Platform SDK version. Default: Nougat version.'
)