From b2d688ea9f9c2d37cdabc1e32b25f2a898e1e245 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Mon, 25 Feb 2013 17:05:22 +0100 Subject: [PATCH] configure: Identify icc compiler with a less ambiguous pattern --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 52cebb7c63..df1a01c20a 100755 --- a/configure +++ b/configure @@ -2364,7 +2364,7 @@ probe_cc(){ fi _cflags_speed='-O3' _cflags_size='-Os' - elif $_cc --version 2>/dev/null | grep -q Intel; then + elif $_cc --version 2>/dev/null | grep -q ^icc; then _type=icc _ident=$($_cc --version | head -n1) _depflags='-MMD'