youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 39f0a2a6b71c5d3cb2e2f8ef1bc3eeeaa6a96971
parent ecc0c5ee01f0e5bdd6af0c32cb5b4adcb2a2f78c
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Sun,  2 Nov 2014 11:41:33 +0100

[test_swfinterp] Correct compilation on modern mxmlc versions

Diffstat:
Mtest/test_swfinterp.py | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git 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.')