From patchwork Tue May 26 11:39:54 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Geert Uytterhoeven X-Patchwork-Id: 6481461 Return-Path: X-Original-To: patchwork-linux-kbuild@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id B7DFF9F38C for ; Tue, 26 May 2015 13:38:52 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id D768A203A0 for ; Tue, 26 May 2015 13:38:51 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id E3025203F3 for ; Tue, 26 May 2015 13:38:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932321AbbEZNim (ORCPT ); Tue, 26 May 2015 09:38:42 -0400 Received: from winston.telenet-ops.be ([195.130.137.75]:44960 "EHLO winston.telenet-ops.be" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932242AbbEZNgW (ORCPT ); Tue, 26 May 2015 09:36:22 -0400 X-Greylist: delayed 1079 seconds by postgrey-1.27 at vger.kernel.org; Tue, 26 May 2015 09:36:21 EDT Received: from xavier.telenet-ops.be (xavier.telenet-ops.be [195.130.132.52]) by winston.telenet-ops.be (Postfix) with ESMTP id E341F590376 for ; Tue, 26 May 2015 13:40:29 +0200 (CEST) Received: from ayla.of.borg ([84.193.93.87]) by xavier.telenet-ops.be with bizsmtp id Ybfu1q0071t5w8s01bfuNt; Tue, 26 May 2015 13:39:54 +0200 Received: from ramsan.of.borg ([192.168.97.29] helo=ramsan) by ayla.of.borg with esmtp (Exim 4.82) (envelope-from ) id 1YxDD7-0008Va-Un; Tue, 26 May 2015 13:39:54 +0200 Received: from geert by ramsan with local (Exim 4.82) (envelope-from ) id 1YxDDD-0004Vu-QB; Tue, 26 May 2015 13:39:59 +0200 From: Geert Uytterhoeven To: Michal Marek , "Yann E. MORIN" Cc: linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH 2/3] kconfig: Wrap long "make help" text lines Date: Tue, 26 May 2015 13:39:54 +0200 Message-Id: <1432640395-17310-2-git-send-email-geert+renesas@glider.be> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1432640395-17310-1-git-send-email-geert+renesas@glider.be> References: <1432640395-17310-1-git-send-email-geert+renesas@glider.be> Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Some "make help" text lines extend beyond 80 characters. Wrap them at 79 characters. Signed-off-by: Geert Uytterhoeven --- scripts/kconfig/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index d9b1fef0c67e3cb4..d19de3665bfbe984 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile @@ -122,7 +122,8 @@ tinyconfig: # 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 program' + @echo ' nconfig - Update current config utilising a ncurses menu based' + @echo ' 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' @@ -138,7 +139,8 @@ help: @echo ' alldefconfig - New config with all symbols set to default' @echo ' randconfig - New config with random answer to all options' @echo ' listnewconfig - List new options' - @echo ' olddefconfig - Same as silentoldconfig but sets new symbols to their default value' + @echo ' olddefconfig - Same as silentoldconfig but sets new symbols to their' + @echo ' default value' @echo ' kvmconfig - Enable additional options for guest kernel support' @echo ' tinyconfig - Configure the tiniest possible kernel'