From c12276dd3db693e67d8bab05934b8e963a507a50 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Thomas=20Wei=C3=9Fschuh?= Date: Thu, 30 Nov 2023 23:23:33 +0100 Subject: [PATCH] meson: bump required version to 0.60.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit We already rely on 0.60.0 features: libsmartcols/meson.build:44: WARNING: Project targets '>=0.57.0' but uses feature introduced in '0.60.0': list.. The right hand operand was not a list. Signed-off-by: Thomas Weißschuh --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index f48722b03f..f7b14cf3f8 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('util-linux', 'c', version : run_command('tools/git-version-gen', check: true).stdout(), - meson_version: '>=0.57.0', + meson_version: '>=0.60.0', license : 'GPLv2+') fs = import('fs') -- 2.47.3