From: Paul Brossier Date: Fri, 17 Mar 2017 00:09:34 +0000 (+0100) Subject: wscript: shorten line X-Git-Tag: 0.4.5~57 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=c3b3b8484da71aaad6704c02659edeb26518818c;p=aubio.git wscript: shorten line --- 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: