From 0c45cd0720cdf2415a93ef63475690faf68364c2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Diego=20Petten=C3=B2?= Date: Fri, 3 Oct 2008 00:19:05 +0000 Subject: [PATCH] =?utf8?q?Stop=20Sun=20Studio=20from=20issuing=20a=20warni?= =?utf8?q?ng=20during=20configure=20when=20passed=20the=20--version=20opti?= =?utf8?q?on.=20patch=20by=20Diego=20'Flameeyes'=20Petten=C3=B2,=20flameey?= =?utf8?q?es=20gmail=20com?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Originally committed as revision 15532 to svn://svn.ffmpeg.org/ffmpeg/trunk --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index c741601..3ef85bd 100755 --- a/configure +++ b/configure @@ -1883,7 +1883,7 @@ check_cflags -fno-math-errno check_cflags -fno-signed-zeros # add some flags for Intel C Compiler -if $cc --version | grep -q Intel; then +if $cc --version 2> /dev/null | grep -q Intel; then # Just warnings, no remarks check_cflags -w1 # -wd: Disable following warnings -- 2.7.4