From: Philipp Hagemeister Date: Sun, 2 Nov 2014 10:41:33 +0000 (+0100) Subject: [test_swfinterp] Correct compilation on modern mxmlc versions X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=39f0a2a6b71c5d3cb2e2f8ef1bc3eeeaa6a96971;p=youtube-dl [test_swfinterp] Correct compilation on modern mxmlc versions --- diff --git a/test/test_swfinterp.py b/test/test_swfinterp.py index b42cd74c7..273e0f074 100644 --- a/test/test_swfinterp.py +++ b/test/test_swfinterp.py @@ -37,7 +37,9 @@ def _make_testfunc(testfile): or os.path.getmtime(swf_file) < os.path.getmtime(as_file)): # Recompile try: - subprocess.check_call(['mxmlc', '-output', swf_file, as_file]) + subprocess.check_call([ + 'mxmlc', '-output', swf_file, + '-static-link-runtime-shared-libraries', as_file]) except OSError as ose: if ose.errno == errno.ENOENT: print('mxmlc not found! Skipping test.')