From 2e80c521295f45105229e5c7bffa3ebfd60b3445 Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Thu, 15 Oct 2020 10:18:00 -0400 Subject: windows: Avoid target name clash happening in GTK+ --- mesonbuild/modules/windows.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'mesonbuild') diff --git a/mesonbuild/modules/windows.py b/mesonbuild/modules/windows.py index a5faa32..b8715f2 100644 --- a/mesonbuild/modules/windows.py +++ b/mesonbuild/modules/windows.py @@ -128,7 +128,9 @@ class WindowsModule(ExtensionModule): if len(src.get_outputs()) > 1: raise MesonException('windows.compile_resources does not accept custom targets with more than 1 output.') - name_formatted = src.get_filename() + # Chances are that src.get_filename() is already the name of that + # target, add a prefix to avoid name clash. + name_formatted = 'windows_compile_resources_' + src.get_filename() name = src.get_id() else: raise MesonException('Unexpected source type {!r}. windows.compile_resources accepts only strings, files, custom targets, and lists thereof.'.format(src)) -- cgit v1.1