mirror of
https://github.com/mpv-player/mpv.git
synced 2025-12-28 05:33:14 +00:00
build: fix swift build with waf 1.8.4
with older waf versions a node doesn't return an absolute path but just a relative one. fix this by explicitly requesting an absolute one. Fixes #5604
This commit is contained in:
@@ -141,7 +141,7 @@ def build(ctx):
|
||||
|
||||
def swift(task):
|
||||
src = ' '.join([x.abspath() for x in task.inputs])
|
||||
bridge = ctx.path.find_node("osdep/macOS_swift_bridge.h")
|
||||
bridge = ctx.path.find_node("osdep/macOS_swift_bridge.h").abspath()
|
||||
tgt = task.outputs[0].abspath()
|
||||
header = task.outputs[1].abspath()
|
||||
module = task.outputs[2].abspath()
|
||||
@@ -179,7 +179,7 @@ def build(ctx):
|
||||
|
||||
ctx.env.append_value('LINKFLAGS', [
|
||||
'-Xlinker', '-add_ast_path',
|
||||
'-Xlinker', '%s' % ctx.path.find_resource("osdep/macOS_swift.swiftmodule")
|
||||
'-Xlinker', '%s' % ctx.path.find_or_declare("osdep/macOS_swift.swiftmodule").abspath()
|
||||
])
|
||||
|
||||
if ctx.dependency_satisfied('cplayer'):
|
||||
|
||||
Reference in New Issue
Block a user