From: Stefan Weil Date: Thu, 7 Oct 2010 19:15:58 +0000 (+0200) Subject: configure: Send error message from spice check to /dev/null X-Git-Tag: v0.14.0-rc0~582 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ba80782912293c9b9828d0cf406f90b76bf4f61b;p=thirdparty%2Fqemu.git configure: Send error message from spice check to /dev/null pkg-config is not always available (e.g. on win32 hosts), but we don't want to see the 'command not found' error message. Redirect stdout and stderr to /dev/null. v2: * Removed changes which should not have been here. Cc: Gerd Hoffmann Signed-off-by: Stefan Weil Signed-off-by: Blue Swirl --- diff --git a/configure b/configure index b4e9c4c40d8..d30306195d0 100755 --- a/configure +++ b/configure @@ -2092,7 +2092,7 @@ int main(void) { spice_server_new(); return 0; } EOF spice_cflags=$($pkgconfig --cflags spice-protocol spice-server 2>/dev/null) spice_libs=$($pkgconfig --libs spice-protocol spice-server 2>/dev/null) - if $pkgconfig --atleast-version=0.5.3 spice-server &&\ + if $pkgconfig --atleast-version=0.5.3 spice-server >/dev/null 2>&1 && \ compile_prog "$spice_cflags" "$spice_libs" ; then spice="yes" libs_softmmu="$libs_softmmu $spice_libs"