From c34f044814ff87e89dd1cc632259006c5aed8f9d Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Sun, 10 Mar 2019 13:34:06 +0200 Subject: Fix appleframeworks with multiple modules. --- mesonbuild/dependencies/platform.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mesonbuild') diff --git a/mesonbuild/dependencies/platform.py b/mesonbuild/dependencies/platform.py index 7e9f9d8..9863fb1 100644 --- a/mesonbuild/dependencies/platform.py +++ b/mesonbuild/dependencies/platform.py @@ -34,7 +34,7 @@ class AppleFrameworks(ExternalDependency): args = self.clib_compiler.find_framework(f, env, []) if args is not None: # No compile args are needed for system frameworks - self.link_args = args + self.link_args += args else: self.is_found = False -- cgit v1.1