diff options
author | Blue Swirl | 2009-04-28 19:05:24 +0200 |
---|---|---|
committer | Blue Swirl | 2009-04-28 19:05:24 +0200 |
commit | efcfd0c5d953722d89ae343d4bf2a9fd326775fa (patch) | |
tree | a618f4961960763f1e881f4acfae958e165e7d7b /configure | |
parent | sparc64 fix context value for ITLB fault (diff) | |
download | qemu-efcfd0c5d953722d89ae343d4bf2a9fd326775fa.tar.gz qemu-efcfd0c5d953722d89ae343d4bf2a9fd326775fa.tar.xz qemu-efcfd0c5d953722d89ae343d4bf2a9fd326775fa.zip |
Silence missing pkg-config error messages
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1064,15 +1064,15 @@ fi # test "$curses" ########################################## # bluez support probe if test "$bluez" = "yes" ; then - `pkg-config bluez` || bluez="no" + `pkg-config bluez 2> /dev/null` || bluez="no" fi if test "$bluez" = "yes" ; then cat > $TMPC << EOF #include <bluetooth/bluetooth.h> int main(void) { return bt_error(0); } EOF - bluez_cflags=`pkg-config --cflags bluez` - bluez_libs=`pkg-config --libs bluez` + bluez_cflags=`pkg-config --cflags bluez 2> /dev/null` + bluez_libs=`pkg-config --libs bluez 2> /dev/null` if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $bluez_cflags $TMPC \ $bluez_libs > /dev/null 2> /dev/null ; then : |