Received: by 2002:a25:d7c1:0:0:0:0:0 with SMTP id o184csp4079905ybg; Fri, 25 Oct 2019 13:02:18 -0700 (PDT) X-Google-Smtp-Source: APXvYqwk2szLa8CHhkbVr3rHEc9BIyKWYE8/tvkv/vCpA9SLQs2JCxpCJItixEtz0FE7kvd73iUM X-Received: by 2002:a17:906:9504:: with SMTP id u4mr4960468ejx.317.1572033738320; Fri, 25 Oct 2019 13:02:18 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1572033738; cv=none; d=google.com; s=arc-20160816; b=k0COmCQYUSBh2OirGMzvekmP7ys6ftlNthiptTo13dNgGMesG4gkcjnPhMvtjHSURj xHb/AZCLyo3x0JJ/J/QEuRTp+f/+qrlGrepBHZVvctKWmBnicPgSDVOBeN0QmwYuJstU bULR3bTcpK0EQUNBCYVvOjyPSlZca7D/OZ1illP9ki5EM2EnbkLjRlDliirJ4UIFuyQK WFob4y/d/f/EGk36Zk7DTg/7yR8YMt/eR9gOPklZUMrRa0jN2k962tFzicOUhlja7vMT JfadKsJk8cAxzs9Rq0xRInmB1LnP6ERqXbYyzOJokomxsjHCzfstl0pFRr1yEv7S3E8v UMWQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:message-id:date:subject:cc:to:from; bh=FOAEhQgdQ8x3ezx9+qbvWIf22Qd3Y4g09z2xc7M7Jwc=; b=J4cOaR6XeAQim45ntsyg5vD7QcwJCN5GXOsFPJT/sdV5CpRfAIwJJPft+SLWfkkClN 6dMqfliD0KSxEC/90WpRTEH78fCcnRqMiZeIhfNQIPFYolAjDb8aLSUWde1wAHa6Iso6 dFqCh0adRO8AvWUIo/p0ZqEFtmlk+IlqVkCtaaBETmdCrM0K6RbdVdbOJg8RWF8nEb3R fon5xETDDS0S05rwj91IGvU5AZj43Pf7tCBz99p0dfTAG1j5Vwb6Jf7cJedGvFRmzyL5 N7WcOFEcpjGNt0G9ZK5DpUCbggRYRW/zIhE554aXax4o+LvbxJY9Wvo0MGTfAqUpJXyy 7HZQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id p48si1932814eda.80.2019.10.25.13.01.54; Fri, 25 Oct 2019 13:02:18 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1732480AbfJYLwj (ORCPT + 99 others); Fri, 25 Oct 2019 07:52:39 -0400 Received: from laurent.telenet-ops.be ([195.130.137.89]:40074 "EHLO laurent.telenet-ops.be" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726463AbfJYLwj (ORCPT ); Fri, 25 Oct 2019 07:52:39 -0400 Received: from ramsan ([84.195.182.253]) by laurent.telenet-ops.be with bizsmtp id Hnsc2100N5USYZQ01nsc2s; Fri, 25 Oct 2019 13:52:37 +0200 Received: from rox.of.borg ([192.168.97.57]) by ramsan with esmtp (Exim 4.90_1) (envelope-from ) id 1iNy8y-0004EC-Fz; Fri, 25 Oct 2019 13:52:36 +0200 Received: from geert by rox.of.borg with local (Exim 4.90_1) (envelope-from ) id 1iNy8y-0002VS-DX; Fri, 25 Oct 2019 13:52:36 +0200 From: Geert Uytterhoeven To: Masahiro Yamada , Michal Marek Cc: Jonathan Corbet , linux-kbuild@vger.kernel.org, linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH v2] kconfig: Wrap long "make help" text lines Date: Fri, 25 Oct 2019 13:52:32 +0200 Message-Id: <20191025115232.9592-1-geert+renesas@glider.be> X-Mailer: git-send-email 2.17.1 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Some "make help" text lines extend beyond 80 characters. Wrap them before an opening parenthesis, or before 80 characters. Signed-off-by: Geert Uytterhoeven --- This is v2 of "[PATCH] kconfig: Wrap long "make help" text line for xenconfig ". v2: - Fix more recent offenders. --- Documentation/Makefile | 6 ++++-- Makefile | 3 ++- scripts/Makefile.package | 3 ++- scripts/kconfig/Makefile | 3 ++- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/Documentation/Makefile b/Documentation/Makefile index e145e4db508bc6a4..0c5185187dad0b68 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -128,8 +128,10 @@ dochelp: @echo ' pdfdocs - PDF' @echo ' epubdocs - EPUB' @echo ' xmldocs - XML' - @echo ' linkcheckdocs - check for broken external links (will connect to external hosts)' - @echo ' refcheckdocs - check for references to non-existing files under Documentation' + @echo ' linkcheckdocs - check for broken external links' + @echo ' (will connect to external hosts)' + @echo ' refcheckdocs - check for references to non-existing files under' + @echo ' Documentation' @echo ' cleandocs - clean all generated files' @echo @echo ' make SPHINXDIRS="s1 s2" [target] Generate only docs of folder s1, s2' diff --git a/Makefile b/Makefile index 5475cdb6d57d4117..5a1ef8db2cec69f6 100644 --- a/Makefile +++ b/Makefile @@ -1523,7 +1523,8 @@ help: @echo ' make V=0|1 [targets] 0 => quiet build (default), 1 => verbose build' @echo ' make V=2 [targets] 2 => give reason for rebuild of target' @echo ' make O=dir [targets] Locate all output files in "dir", including .config' - @echo ' make C=1 [targets] Check re-compiled c source with $$CHECK (sparse by default)' + @echo ' make C=1 [targets] Check re-compiled c source with $$CHECK' + @echo ' (sparse by default)' @echo ' make C=2 [targets] Force check of all c source with $$CHECK' @echo ' make RECORDMCOUNT_WARN=1 [targets] Warn about ignored mcount sections' @echo ' make W=n [targets] Enable extra build checks, n=1,2,3 where' diff --git a/scripts/Makefile.package b/scripts/Makefile.package index 56eadcc48d46de54..ee9b368dfcf37736 100644 --- a/scripts/Makefile.package +++ b/scripts/Makefile.package @@ -146,7 +146,8 @@ help: @echo ' binrpm-pkg - Build only the binary kernel RPM package' @echo ' deb-pkg - Build both source and binary deb kernel packages' @echo ' bindeb-pkg - Build only the binary kernel deb package' - @echo ' snap-pkg - Build only the binary kernel snap package (will connect to external hosts)' + @echo ' snap-pkg - Build only the binary kernel snap package' + @echo ' (will connect to external hosts)' @echo ' tar-pkg - Build the kernel as an uncompressed tarball' @echo ' targz-pkg - Build the kernel as a gzip compressed tarball' @echo ' tarbz2-pkg - Build the kernel as a bzip2 compressed tarball' diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index ef2f2336c46960df..a7d130b9306e8876 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile @@ -137,7 +137,8 @@ help: @echo ' olddefconfig - Same as oldconfig but sets new symbols to their' @echo ' default value without prompting' @echo ' kvmconfig - Enable additional options for kvm guest kernel support' - @echo ' xenconfig - Enable additional options for xen dom0 and guest kernel support' + @echo ' xenconfig - Enable additional options for xen dom0 and guest kernel' + @echo ' support' @echo ' tinyconfig - Configure the tiniest possible kernel' @echo ' testconfig - Run Kconfig unit tests (requires python3 and pytest)' -- 2.17.1