diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-05-08 20:57:52 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-05-08 20:57:52 +0000 |
commit | e14a693ddaec910888ba2870aab35b5eb8793e5d (patch) | |
tree | a4958839412496af1da278ee8a97ffa515ce1531 /configure | |
parent | 09c69c5b23e904bf59608942da15650bf9428921 (diff) |
Silence sdl-config stderr output, by Jeff Chua.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2787 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -562,8 +562,8 @@ fi # static link with sdl ? if test "$sdl" = "yes" ; then aa="no" -`$sdl_config --static-libs | grep \\\-laa > /dev/null` && aa="yes" -sdl_static_libs=`$sdl_config --static-libs` +`$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa="yes" +sdl_static_libs=`$sdl_config --static-libs 2>/dev/null` if [ "$aa" = "yes" ] ; then sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`" fi |