Commit 6c59186721b28590f45e49b853f3f16ec317757e

Authored by ths
1 parent b4ab4b4e

Suppress warning messages from "which".


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2795 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 2 additions and 1 deletions
configure
... ... @@ -606,7 +606,8 @@ EOF
606 606 fi
607 607  
608 608 # Check if tools are available to build documentation.
609   -if [ -x "`which texi2html`" ] && [ -x "`which pod2man`" ]; then
  609 +if [ -x "`which texi2html 2>/dev/null`" ] && \
  610 + [ -x "`which pod2man 2>/dev/null`" ]; then
610 611 build_docs="yes"
611 612 fi
612 613  
... ...