diff options
author | Anton Samsonov <Anton.V.Samsonov@mcst.ru> | 2023-09-12 17:10:35 +0300 |
---|---|---|
committer | Anastasia Klimchuk <aklm@chromium.org> | 2023-09-21 00:42:29 +0000 |
commit | 879fa069fd2514bacd51882b91d15123b2f7ebfa (patch) | |
tree | 482f1976f4c05527f31f3561478800bdeb6e6b49 | |
parent | ebda447ad9df56dae7b94548c8077497bd8fb7fa (diff) | |
download | flashrom-879fa069fd2514bacd51882b91d15123b2f7ebfa.tar.gz flashrom-879fa069fd2514bacd51882b91d15123b2f7ebfa.tar.bz2 flashrom-879fa069fd2514bacd51882b91d15123b2f7ebfa.zip |
meson.build: Upgrade minimum Meson version to 0.56.0
Since doc/meson.build uses `str.substring()` introduced in Meson 0.56.0,
the root meson.build should be updated from 0.53.0.
Change-Id: I53c6c42c27a58734742e3dce3cdbde4c65b89a90
Signed-off-by: Anton Samsonov <devel@zxlab.ru>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/77779
Reviewed-by: Peter Marheine <pmarheine@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Anastasia Klimchuk <aklm@chromium.org>
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 77d941ea1..c85fdf4d0 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project('flashromutils', 'c', version : run_command('cat', 'VERSION', check: true).stdout().strip(), license : 'GPL-2.0', - meson_version : '>=0.53.0', + meson_version : '>=0.56.0', default_options : [ 'warning_level=2', 'c_std=c99', |