diff options
author | Stefan Weil <weil@mail.berlios.de> | 2010-03-01 22:10:46 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2010-03-09 09:03:46 -0600 |
commit | f8aa6c7bebfa66d09220e60f5e794d38015904ea (patch) | |
tree | 74649d46284d2312ee23f1e87442b033532d9e07 | |
parent | 9eedeb3b88173d84d438557cada237346a764e0b (diff) | |
download | hqemu-f8aa6c7bebfa66d09220e60f5e794d38015904ea.zip hqemu-f8aa6c7bebfa66d09220e60f5e794d38015904ea.tar.gz |
configure: Fix wrong stderr redirection
Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 : |