diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-10-16 10:54:16 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-10-16 10:54:16 +0100 |
| commit | b2da30977904a932fa55f1a69fa1372dad124e37 (patch) | |
| tree | 4a8cb2b5bfb1f8e78516c99edb37c4022852eeee /wscript | |
| parent | a55adfd6f1a22b00d1330e9aea1f5cf8d24bf92f (diff) | |
Fix previous.
Diffstat (limited to 'wscript')
| -rw-r--r-- | wscript | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -29,8 +29,8 @@ def static_ffmpeg(conf): conf.env.STLIB_AVFILTER = ['avfilter', 'swresample'] conf.check_cfg(package='libavcodec', args='--cflags', uselib_store='AVCODEC', mandatory=True) # lzma link is needed by Centos 7, at least - conf.env.STLIB_AVCODEC = ['avcodec', 'lzma'] - conf.env.LIB_AVCODEC = ['z'] + conf.env.STLIB_AVCODEC = ['avcodec'] + conf.env.LIB_AVCODEC = ['z', 'lzma'] conf.check_cfg(package='libavutil', args='--cflags', uselib_store='AVUTIL', mandatory=True) conf.env.STLIB_AVUTIL = ['avutil'] conf.check_cfg(package='libswscale', args='--cflags', uselib_store='SWSCALE', mandatory=True) |
