Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-02-25 20:05:22 +0400
committerDiego Biurrun <diego@biurrun.de>2013-02-25 21:15:41 +0400
commitb2d688ea9f9c2d37cdabc1e32b25f2a898e1e245 (patch)
tree464462570a11679cb582732839d8c52fabd545b8
parentb58b00aeca21de00ab6da2944684f784d9d6bc47 (diff)
configure: Identify icc compiler with a less ambiguous pattern
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
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'