From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JsCyy-0006wF-2l for qemu-devel@nongnu.org; Sat, 03 May 2008 04:20:36 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JsCyw-0006vQ-UI for qemu-devel@nongnu.org; Sat, 03 May 2008 04:20:35 -0400 Received: from [199.232.76.173] (port=57788 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JsCyw-0006vG-Mq for qemu-devel@nongnu.org; Sat, 03 May 2008 04:20:34 -0400 Received: from tapir.sajinet.com.pe ([66.139.79.212]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JsCyw-0000mf-HK for qemu-devel@nongnu.org; Sat, 03 May 2008 04:20:34 -0400 Date: Sat, 3 May 2008 03:39:51 -0500 From: Carlo Marcelo Arenas Belon Message-ID: <20080503083951.GA32346@tapir> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="DocE+STaALJfprDB" Content-Disposition: inline Subject: [Qemu-devel] [PATCH] configure: silence test for brlapi Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org --DocE+STaALJfprDB Content-Type: text/plain; charset=us-ascii Content-Disposition: inline The following patch, sends the output for the test of brlapi to /dev/null instead of the currently defined log file as it is left unused otherwise in /tmp of the build server. Carlo --- --DocE+STaALJfprDB Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="qemu-configure-brlapi.patch" Index: configure =================================================================== --- configure (revision 4304) +++ configure (working copy) @@ -733,7 +733,7 @@ #include int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); } EOF - if $cc -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi 2> /tmp/qemu-$$-brlapi.log ; then + if $cc -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi 2> /dev/null ; then brlapi=yes fi # brlapi compile test fi # -z $brlapi --DocE+STaALJfprDB--