summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorRoman Stratiienko <r.stratiienko@gmail.com>2021-10-06 10:14:33 +0300
committerMarge Bot <eric+marge@anholt.net>2021-10-06 12:05:22 +0000
commitf1c322c269f9cfef0c07a0735d142f56de76d4ab (patch)
tree96fa1419423c4a948597605bafa69a5a71df0b2b /meson_options.txt
parent6a16b6a74c3617205367ab1126b0d9150ca8dfe3 (diff)
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>
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 8f67013d1bb..32c7593ee8e 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -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.'
)