From e4015b00d4e9e40dc1693a018edd51bf7a04993e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Martin=20Storsj=C3=B6?= Date: Mon, 27 Jul 2015 09:40:28 +0300 Subject: [PATCH] configure: Simplify, remove an unnecessary intermediate variable MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Storsjö --- configure | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/configure b/configure index 66edc14ac6..56459361f3 100755 --- a/configure +++ b/configure @@ -4693,8 +4693,7 @@ EOF fi for pfx in "" host_; do - pfx_no_=${pfx%_} - varname=${pfx_no_}cc_type + varname=${pfx%_}cc_type eval "type=\$$varname" if [ $type = "msvc" ]; then check_${pfx}cc <