]> code.ossystems Code Review - openembedded-core.git/blob
159425a6436eb152971f6b7e0b6cd14b0c8f28b1
[openembedded-core.git] /
1 From b9a19aa4bdb21751c04c0e3ba8a9e2e35a10c953 Mon Sep 17 00:00:00 2001
2 From: Alexander Kanavin <alex@linutronix.de>
3 Date: Mon, 25 Oct 2021 18:18:15 +0200
4 Subject: [PATCH] lib/meson.build: fix meson 0.60 compatibility
5
6 Upstream-Status: Pending
7 Signed-off-by: Alexander Kanavin <alex@linutronix.de>
8 ---
9  lib/meson.build | 2 +-
10  1 file changed, 1 insertion(+), 1 deletion(-)
11
12 diff --git a/lib/meson.build b/lib/meson.build
13 index 9929520e..1a525587 100644
14 --- a/lib/meson.build
15 +++ b/lib/meson.build
16 @@ -152,7 +152,7 @@ lib_version = vcs_tag(input : 'version.h.in', output : 'version.h',
17  
18  lib_intermediates = []
19  foreach f: lib_sources
20 -    name = f.underscorify(f)
21 +    name = f.underscorify()
22      lib = static_library('igt-' + name,
23         [ f, lib_version ],
24         include_directories: inc,