diff options
author | Jun ASAKA <JunASAKA@zzy040330.moe> | 2022-12-27 17:21:57 +0800 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2022-12-30 17:22:14 +0900 |
commit | 9c9b55a59416a87fc73c479d78cb3218076dbc30 (patch) | |
tree | 88f88dd22ff78d3f0fca586414059b4ae1339c56 /scripts | |
parent | 924d28b39e3b62ad5e97751585aed7c89f8c43ee (diff) | |
download | linux-stable-9c9b55a59416a87fc73c479d78cb3218076dbc30.tar.gz linux-stable-9c9b55a59416a87fc73c479d78cb3218076dbc30.tar.bz2 linux-stable-9c9b55a59416a87fc73c479d78cb3218076dbc30.zip |
kbuild: add a missing line for help message
The help message line for building the source RPM package was missing.
Added it.
Signed-off-by: Jun ASAKA <JunASAKA@zzy040330.moe>
Reviewed-by: Nathan Chancellor <nathan@kernel.org>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/Makefile.package | 1 |
1 files changed, 1 insertions, 0 deletions
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' |