From c3b3b8484da71aaad6704c02659edeb26518818c Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Fri, 17 Mar 2017 01:09:34 +0100 Subject: [PATCH] wscript: shorten line --- wscript | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wscript b/wscript index 10e9be4e..44021712 100644 --- a/wscript +++ b/wscript @@ -340,7 +340,8 @@ def configure(ctx): 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: -- 2.11.0