From: Blue Swirl Date: Tue, 28 Apr 2009 17:05:24 +0000 (+0000) Subject: Silence missing pkg-config error messages X-Git-Tag: TizenStudio_2.0_p2.3.2~208^2~12098 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=efcfd0c5d953722d89ae343d4bf2a9fd326775fa;p=sdk%2Femulator%2Fqemu.git Silence missing pkg-config error messages --- diff --git a/configure b/configure index 1cbeabc..82fb60a 100755 --- a/configure +++ b/configure @@ -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 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 :