From mboxrd@z Thu Jan 1 00:00:00 1970 From: Arun Sharma Subject: [PATCH] xen.vncserver-quiet-configure.patch Date: Tue, 24 May 2005 14:07:45 -0700 Message-ID: <20050524210745.GA5424@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: Ian Pratt , Keir Fraser Cc: xen-devel@lists.xensource.com List-Id: xen-devel@lists.xenproject.org When configure looks for VNC Server library installation by executing libvncserver-config, make sure we don't print messages to the console if we cannot find the libvncserver-config program. Signed-off-by: Inaky Perez-Gonzalez Signed-off-by: Arun Sharma --- xen-vmx/tools/ioemu/configure (revision 1102) +++ xen-vmx/tools/ioemu/configure (working copy) @@ -230,7 +230,7 @@ if test -z "$vnc"; then -if libvncserver-config --version > /dev/null; then +if libvncserver-config --version >& /dev/null; then vnc=yes else vnc=no