diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-02-22 11:04:22 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-02-22 11:04:22 +0000 |
commit | 3a636b6fd724c141c83bf06a912307a376c5b215 (patch) | |
tree | 1be38c7840a67d905eeb798864c59c28dd361490 /configure | |
parent | a9d3c6692ef9cd931fd082ca28f7b4738e211363 (diff) | |
download | ffmpeg-3a636b6fd724c141c83bf06a912307a376c5b215.tar.gz |
Fix gcc detection: Not all gcc versions have "(GCC)" in the version string.
Originally committed as revision 17522 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1356,7 +1356,7 @@ EOF fi rm $TMPSH -if $cc --version 2>/dev/null | grep -q '(GCC)'; then +if $cc --version 2>/dev/null | grep -qi gcc; then cc_type=gcc elif $cc --version 2>/dev/null | grep -q Intel; then cc_type=icc |