Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751530AbWCDSor (ORCPT ); Sat, 4 Mar 2006 13:44:47 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751877AbWCDSor (ORCPT ); Sat, 4 Mar 2006 13:44:47 -0500 Received: from linux01.gwdg.de ([134.76.13.21]:16001 "EHLO linux01.gwdg.de") by vger.kernel.org with ESMTP id S1751530AbWCDSor (ORCPT ); Sat, 4 Mar 2006 13:44:47 -0500 Date: Sat, 4 Mar 2006 19:44:01 +0100 (MET) From: Jan Engelhardt To: Nick Warne cc: Adrian Bunk , Marcelo Tosatti , linux-kernel@vger.kernel.org, "Stefan-W. Hahn" , Willy Tarreau Subject: Re: [2.4 patch] Corrected faulty syntax in drivers/input/Config.in In-Reply-To: <7c3341450603031226o55f6c77ah@mail.gmail.com> Message-ID: References: <20060303180100.GV9295@stusta.de> <7c3341450603031226o55f6c77ah@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 988 Lines: 27 >> If statement in drivers/input/Config.in for "make xconfig" corrected. >> >> Signed-off-by: Stefan-W. Hahn >> Signed-off-by: Adrian Bunk >> >> --- a/drivers/input/Config.in >> +++ b/drivers/input/Config.in >> @@ -8,7 +8,7 @@ comment 'Input core support' >> tristate 'Input core support' CONFIG_INPUT >> dep_tristate ' Keyboard support' CONFIG_INPUT_KEYBDEV $CONFIG_INPUT >> >> -if [ "$CONFIG_INPUT_KEYBDEV" == "n" ]; then >> +if [ "$CONFIG_INPUT_KEYBDEV" = "n" ]; then >> bool ' Use dummy keyboard driver' CONFIG_DUMMY_KEYB $CONFIG_INPUT >> fi If this is sh compatible code, then == is just as valid -- if xconfig breaks then, then xconfig is broken, not the file. Jan Engelhardt -- - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/