From 3a636b6fd724c141c83bf06a912307a376c5b215 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Sun, 22 Feb 2009 11:04:22 +0000 Subject: 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 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure') diff --git a/configure b/configure index 77aa982127..42d01b1204 100755 --- a/configure +++ b/configure @@ -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 -- cgit v1.2.3