1
mirror of https://github.com/mpv-player/mpv synced 2024-09-28 17:52:52 +02:00

build: fix regression in cross-compilation [2]

Fixup commit for 5cb8439015. getattr only works on dot notation.
This commit is contained in:
Stefano Pigozzi 2013-12-06 10:28:52 +01:00
parent 4ed4341df8
commit a53abbf4a6

View File

@ -25,7 +25,7 @@ def __merge_options__(dependency_identifier, *args):
def _filter_cc_arguments(ctx, opts):
if ctx.env.DEST_OS != Utils.unversioned_sys_platform():
# cross compiling, remove execute=True if present
if getattr(opts, 'execute', None) == True:
if opts.get('execute'):
opts['execute'] = False
return opts