From patchwork Sat Jun 2 09:08:03 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Petr Vorel X-Patchwork-Id: 10444635 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 778C7604D4 for ; Sat, 2 Jun 2018 09:08:15 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 597D428385 for ; Sat, 2 Jun 2018 09:08:15 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 4E19F28680; Sat, 2 Jun 2018 09:08:15 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00, MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 00FDC289E1 for ; Sat, 2 Jun 2018 09:08:15 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750892AbeFBJIO (ORCPT ); Sat, 2 Jun 2018 05:08:14 -0400 Received: from mx2.suse.de ([195.135.220.15]:45193 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750842AbeFBJIO (ORCPT ); Sat, 2 Jun 2018 05:08:14 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (charybdis-ext-too.suse.de [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id ED127AEFC; Sat, 2 Jun 2018 09:08:12 +0000 (UTC) From: Petr Vorel To: linux-kbuild@vger.kernel.org Cc: Petr Vorel , Masahiro Yamada Subject: [PATCH 2/2] kbuild: Move last word of nconfig help to the previous line Date: Sat, 2 Jun 2018 11:08:03 +0200 Message-Id: <20180602090803.6362-2-pvorel@suse.cz> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20180602090803.6362-1-pvorel@suse.cz> References: <20180602090803.6362-1-pvorel@suse.cz> Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Signed-off-by: Petr Vorel --- Changes v2->v3: * Dropped incorrect indent fix. I was wrong, indent is correct. This was the main motivation for change, putting nconfig on one line isn't important, feel free to drop it. --- scripts/kconfig/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index 36b092150c45..c7d192d97641 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile @@ -151,8 +151,7 @@ clean-dirs += tests/.cache # Help text used by make help help: @echo ' config - Update current config utilising a line-oriented program' - @echo ' nconfig - Update current config utilising a ncurses menu based' - @echo ' program' + @echo ' nconfig - Update current config utilising a ncurses menu based program' @echo ' menuconfig - Update current config utilising a menu based program' @echo ' xconfig - Update current config utilising a Qt based front-end' @echo ' gconfig - Update current config utilising a GTK+ based front-end'