From a17456608c0eb8dce61951b1beb0cd64e29a0f0a Mon Sep 17 00:00:00 2001 From: Akemi Date: Wed, 14 Feb 2018 20:04:03 +0100 Subject: build: fix dependency check on macOS 235eb60 added a needed linking flag, but too soon. this lead to some of the configure checks to fail. add the flag in our build phase. Fixes #5528 --- waftools/checks/custom.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'waftools/checks') diff --git a/waftools/checks/custom.py b/waftools/checks/custom.py index 14e59f3f49..698742406f 100644 --- a/waftools/checks/custom.py +++ b/waftools/checks/custom.py @@ -100,15 +100,7 @@ def check_cocoa(ctx, dependency_identifier): includes = ctx.srcnode.abspath(), linkflags = '-fobjc-arc') - res = fn(ctx, dependency_identifier) - # on macOS we explicitly need to set the SDK path, otherwise it can lead to - # linking warnings or errors - if res: - ctx.env.append_value('LINKFLAGS', [ - '-isysroot', ctx.env.MACOS_SDK - ]) - - return res + return fn(ctx, dependency_identifier) def check_openal(ctx, dependency_identifier): checks = [ -- cgit v1.2.3