Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1161001AbWCCSBE (ORCPT ); Fri, 3 Mar 2006 13:01:04 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1161002AbWCCSBE (ORCPT ); Fri, 3 Mar 2006 13:01:04 -0500 Received: from emailhub.stusta.mhn.de ([141.84.69.5]:9227 "HELO mailout.stusta.mhn.de") by vger.kernel.org with SMTP id S1161001AbWCCSBC (ORCPT ); Fri, 3 Mar 2006 13:01:02 -0500 Date: Fri, 3 Mar 2006 19:01:01 +0100 From: Adrian Bunk To: Marcelo Tosatti Cc: linux-kernel@vger.kernel.org, "Stefan-W. Hahn" Subject: [2.4 patch] Corrected faulty syntax in drivers/input/Config.in Message-ID: <20060303180100.GV9295@stusta.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.11+cvs20060126 Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 910 Lines: 29 From: "Stefan-W. Hahn" If statement in drivers/input/Config.in for "make xconfig" corrected. Signed-off-by: Stefan-W. Hahn Signed-off-by: Adrian Bunk --- This patch was sent by Stefan-W. Hahn on: - 26 Feb 2006 --- 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 - 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/