From 851ffa803f18d80c2a746f698472dd70b5b9f553 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Thu, 24 Jun 2010 20:49:39 +0000 Subject: [PATCH] configure: use warn function for unrecognised --cc and --arch settings Originally committed as revision 23762 to svn://svn.ffmpeg.org/ffmpeg/trunk --- configure | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 20a0452ed0..b938749fa7 100755 --- a/configure +++ b/configure @@ -1856,7 +1856,8 @@ elif $cc -V 2>&1 | grep -q Sun; then } fi -test -n "$cc_type" && enable $cc_type || echolog "Unknown C compiler $cc" +test -n "$cc_type" && enable $cc_type || + warn "Unknown C compiler $cc, unable to select optimal CFLAGS" : ${as_default:=$cc} : ${dep_cc_default:=$cc} @@ -1947,7 +1948,7 @@ case "$arch" in ;; esac -is_in $arch $ARCH_LIST || echo "WARNING: unknown arch $arch" +is_in $arch $ARCH_LIST || warn "unknown architecture $arch" enable $arch # Add processor-specific flags