diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-05-09 13:55:03 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-05-09 13:55:03 +0000 |
commit | 6c59186721b28590f45e49b853f3f16ec317757e (patch) | |
tree | 49672ee020243e5197973a55858bf997605c05c3 /configure | |
parent | b4ab4b4e1b8119ac1d9b28510d90682e30259c38 (diff) |
Suppress warning messages from "which".
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2795 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -606,7 +606,8 @@ EOF fi # Check if tools are available to build documentation. -if [ -x "`which texi2html`" ] && [ -x "`which pod2man`" ]; then +if [ -x "`which texi2html 2>/dev/null`" ] && \ + [ -x "`which pod2man 2>/dev/null`" ]; then build_docs="yes" fi |