From 2bf76cd5818e7cc422f92b9b16850315c07bf8da Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Mon, 1 Mar 2010 22:10:46 +0100 Subject: [PATCH] configure: Fix wrong stderr redirection Signed-off-by: Stefan Weil Signed-off-by: Anthony Liguori --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index f55baf0..7992812 100755 --- a/configure +++ b/configure @@ -1082,8 +1082,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 : -- 2.7.4