From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NmCtB-00036U-N2 for qemu-devel@nongnu.org; Mon, 01 Mar 2010 16:10:53 -0500 Received: from [199.232.76.173] (port=38375 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NmCtA-00035w-Ug for qemu-devel@nongnu.org; Mon, 01 Mar 2010 16:10:53 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1NmCt9-0003ZB-Q4 for qemu-devel@nongnu.org; Mon, 01 Mar 2010 16:10:52 -0500 Received: from moutng.kundenserver.de ([212.227.126.186]:60095) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NmCt9-0003Z5-Bh for qemu-devel@nongnu.org; Mon, 01 Mar 2010 16:10:51 -0500 From: Stefan Weil Date: Mon, 1 Mar 2010 22:10:46 +0100 Message-Id: <1267477846-6168-1-git-send-email-weil@mail.berlios.de> Subject: [Qemu-devel] [PATCH] configure: Fix wrong stderr redirection List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: QEMU Developers Signed-off-by: Stefan Weil --- configure | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index dfe3e42..a14aba7 100755 --- a/configure +++ b/configure @@ -1091,8 +1091,8 @@ EOF # static link with sdl ? (note: sdl.pc's --static --libs is broken) if test "$sdl" = "yes" -a "$static" = "yes" ; then if test $? = 0 && echo $sdl_libs | grep -- -laa > /dev/null; then - sdl_libs="$sdl_libs `aalib-config --static-libs >2 /dev/null`" - sdl_cflags="$sdl_cflags `aalib-config --cflags >2 /dev/null`" + sdl_libs="$sdl_libs `aalib-config --static-libs 2>/dev/null`" + sdl_cflags="$sdl_cflags `aalib-config --cflags 2>/dev/null`" fi if compile_prog "$sdl_cflags" "$sdl_libs" ; then : -- 1.6.6.1