diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-02-25 17:05:22 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-02-25 18:15:41 +0100 |
commit | b2d688ea9f9c2d37cdabc1e32b25f2a898e1e245 (patch) | |
tree | 464462570a11679cb582732839d8c52fabd545b8 | |
parent | b58b00aeca21de00ab6da2944684f784d9d6bc47 (diff) | |
download | ffmpeg-b2d688ea9f9c2d37cdabc1e32b25f2a898e1e245.tar.gz |
configure: Identify icc compiler with a less ambiguous pattern
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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' |