From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MPFfx-0000iz-Le for qemu-devel@nongnu.org; Fri, 10 Jul 2009 08:58:05 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MPFfs-0000aZ-JV for qemu-devel@nongnu.org; Fri, 10 Jul 2009 08:58:04 -0400 Received: from [199.232.76.173] (port=36626 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MPFfs-0000Zy-5e for qemu-devel@nongnu.org; Fri, 10 Jul 2009 08:58:00 -0400 Received: from mail-qy0-f174.google.com ([209.85.221.174]:44753) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MPFfr-0000Gz-H1 for qemu-devel@nongnu.org; Fri, 10 Jul 2009 08:57:59 -0400 Received: by qyk4 with SMTP id 4so652167qyk.4 for ; Fri, 10 Jul 2009 05:57:58 -0700 (PDT) Message-ID: <4A573AD4.6040906@codemonkey.ws> Date: Fri, 10 Jul 2009 07:57:56 -0500 From: Anthony Liguori MIME-Version: 1.0 Subject: Re: [Qemu-devel] [PATCH] configure: don't assume presence of sdl-config References: <200906301106.09570.Christoph.Egger@amd.com> <4A564B31.1080402@codemonkey.ws> <200907101012.01559.Christoph.Egger@amd.com> In-Reply-To: <200907101012.01559.Christoph.Egger@amd.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Christoph Egger Cc: qemu-devel@nongnu.org Christoph Egger wrote: > On Thursday 09 July 2009 21:55:29 Anthony Liguori wrote: > >> Christoph Egger wrote: >> >>> Hi! >>> >>> Don't assume sdl-config is present when checking if SDL is there. >>> If sdl is not installed, configure prints this error: >>> >>> sdl-config: No such file or directory >>> >>> Signed-off-by: Christoph Egger >>> >> `which sdl-config` will result in an error message going to stderr if >> sdl-config is not found. >> > > Right. The intention of the patch is to suppress this. > It is enough when configure prints "sdl: no" > Right, so the patch is unsuccessful in doing that :-) You need something like `which sdl-config 2> /dev/null` Regards, Anthony Liguori > Christoph > >