ref: c3b3b8484da71aaad6704c02659edeb26518818c
parent: ba67cb6195be92a3a04e0b1787576119b9156ed7
author: Paul Brossier <piem@piem.org>
date: Thu Mar 16 21:09:34 EDT 2017
wscript: shorten line
--- a/wscript
+++ b/wscript
@@ -340,7 +340,8 @@
elif 'HAVE_AVUTIL' not in ctx.env:
ctx.msg(msg_check, 'not found (missing avutil)', color = 'YELLOW')
elif 'HAVE_SWRESAMPLE' not in ctx.env and 'HAVE_AVRESAMPLE' not in ctx.env:
- ctx.msg(msg_check, 'not found (avresample or swresample required)', color = 'YELLOW')
+ resample_missing = 'not found (avresample or swresample required)'
+ ctx.msg(msg_check, resample_missing, color = 'YELLOW')
else:
ctx.msg(msg_check, 'yes')
if 'HAVE_SWRESAMPLE' in ctx.env: