From patchwork Tue Dec 27 09:21:57 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jun ASAKA X-Patchwork-Id: 13082164 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5DEE9C10F1B for ; Tue, 27 Dec 2022 09:31:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230403AbiL0Jbv (ORCPT ); Tue, 27 Dec 2022 04:31:51 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:51456 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230349AbiL0Jbu (ORCPT ); Tue, 27 Dec 2022 04:31:50 -0500 X-Greylist: delayed 573 seconds by postgrey-1.37 at lindbergh.monkeyblade.net; Tue, 27 Dec 2022 01:31:49 PST Received: from pv50p00im-zteg10021301.me.com (pv50p00im-zteg10021301.me.com [17.58.6.46]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 74658271D for ; Tue, 27 Dec 2022 01:31:49 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=zzy040330.moe; s=sig1; t=1672132934; bh=6uIkJHq/oE8tSBCo6lr9eo7/ZNZTPvJxUWQNK0GEQnM=; h=From:To:Subject:Date:Message-Id:MIME-Version; b=XjVbddmm3RWkuWCSSaYosADIEWNp2wIg/I4PLiHhcCA7KqYy9FmYpYZcU9crgDGoY eawQg5U0RhA5Ivn6LPJGiHdP1wmaWh62amWZaT0wj+2kOMRLuyDkfDU1sLM8L9Yehd ZK9+V82ARm3kEngujndZ1h5X4FVOoajO4jhRcjYSBNT/QtrRCkWYgOhH2ImNkynyQp 96vGaLAMIwUy1Qokp9KqwPm+WXRGqznxIYds4/NXFQy+VUjeYc1e1VoFU/vT62eg3G jqo/4IR6KRHEb7i2gZYleV0eLYg3hDk5EwTnuIw+1jaFXa0oeyczc/4jDeBnn7Nf3F wDdMM1K8Tx5qw== Received: from localhost.localdomain (pv50p00im-dlb-asmtp-mailmevip.me.com [17.56.9.10]) by pv50p00im-zteg10021301.me.com (Postfix) with ESMTPSA id 216F750056D; Tue, 27 Dec 2022 09:22:06 +0000 (UTC) From: Jun ASAKA To: masahiroy@kernel.org Cc: nathan@kernel.org, ndesaulniers@google.com, nicolas@fjasle.eu, linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org, Jun ASAKA Subject: [PATCH] kbuild: add a missing line for help message Date: Tue, 27 Dec 2022 17:21:57 +0800 Message-Id: <20221227092157.329109-1-JunASAKA@zzy040330.moe> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 X-Proofpoint-ORIG-GUID: -vHwCIjNLMoiID5fF55NQQGyqOjJFoaZ X-Proofpoint-GUID: -vHwCIjNLMoiID5fF55NQQGyqOjJFoaZ X-Proofpoint-Virus-Version: =?utf-8?q?vendor=3Dfsecure_engine=3D1=2E1=2E170-?= =?utf-8?q?22c6f66c430a71ce266a39bfe25bc2903e8d5c8f=3A6=2E0=2E517=2C18=2E0?= =?utf-8?q?=2E572=2C17=2E11=2E64=2E514=2E0000000_definitions=3D2022-06-21=5F?= =?utf-8?q?01=3A2022-06-21=5F01=2C2020-02-14=5F11=2C2022-02-23=5F01_signatur?= =?utf-8?q?es=3D0?= X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0 bulkscore=0 suspectscore=0 clxscore=1030 adultscore=0 malwarescore=0 phishscore=0 mlxscore=0 mlxlogscore=658 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.12.0-2209130000 definitions=main-2212270077 Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org The help message line for building the source RPM package was missing. Added it. Signed-off-by: Jun ASAKA Reviewed-by: Nathan Chancellor --- scripts/Makefile.package | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/Makefile.package b/scripts/Makefile.package index 539e9f765d64..525a2820976f 100644 --- a/scripts/Makefile.package +++ b/scripts/Makefile.package @@ -158,6 +158,7 @@ $(perf-tar-pkgs): PHONY += help help: @echo ' rpm-pkg - Build both source and binary RPM kernel packages' + @echo ' srcrpm-pkg - Build only the source kernel RPM package' @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'