Angel Pons has uploaded this change for review.

View Change

meson.build: Require at least meson 0.50.0

The `install` argument in `configure_file` is a feature introduced in
meson '0.50.0', but meson.build requests '>=0.47.0'. Meson complains:

WARNING: Project targeting '>=0.47.0' but tried to use feature
introduced in '0.50.0': install arg in configure_file.

To correct this, adjust the `meson_version` value accordingly.

Change-Id: Iadcffb7f8c720ffa8aa5f0ad62638d7b37f39934
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
---
M meson.build
1 file changed, 1 insertion(+), 1 deletion(-)

git pull ssh://review.coreboot.org:29418/flashrom refs/changes/24/49924/1
diff --git a/meson.build b/meson.build
index 556183e..c02a281 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
project('flashromutils', 'c',
version : run_command('util/getversion.sh', '-v').stdout().strip(),
license : 'GPL-2.0',
- meson_version : '>=0.47.0',
+ meson_version : '>=0.50.0',
default_options : ['warning_level=2', 'c_std=c99'],
)


To view, visit change 49924. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: flashrom
Gerrit-Branch: master
Gerrit-Change-Id: Iadcffb7f8c720ffa8aa5f0ad62638d7b37f39934
Gerrit-Change-Number: 49924
Gerrit-PatchSet: 1
Gerrit-Owner: Angel Pons <th3fanbus@gmail.com>
Gerrit-MessageType: newchange