diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2017-11-15 18:19:20 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2017-11-23 23:12:05 +0900 |
commit | ebaad7d36406d951159f43038a843edece1b7877 (patch) | |
tree | cc6f68d06e77101038b6c718d198ff4af89e3f3c /scripts | |
parent | 2dbc644ac62bbcb9ee78e84719953f611be0413d (diff) | |
download | linux-ebaad7d36406d951159f43038a843edece1b7877.tar.gz linux-ebaad7d36406d951159f43038a843edece1b7877.tar.bz2 linux-ebaad7d36406d951159f43038a843edece1b7877.zip |
kbuild: rpm: prompt to use "rpm-pkg" if "rpm" target is used
The "rpm" has been kept for backward compatibility since pre-git era.
I am planning to remove it after the Linux 4.18 release. Annouce the
end of the support, prompting to use "rpm-pkg" instead.
If you use "rpm", it will work like "rpm-pkg", but warning messages
will be displayed as follows:
WARNING: "rpm" target will be removed after Linux 4.18
Please use "rpm-pkg" instead.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/package/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/package/Makefile b/scripts/package/Makefile index c30bcf8e934a..c23534925b38 100644 --- a/scripts/package/Makefile +++ b/scripts/package/Makefile @@ -45,7 +45,7 @@ rm -f $(objtree)/.scmversion # rpm-pkg # --------------------------------------------------------------------------- -rpm-pkg rpm: FORCE +rpm-pkg: FORCE $(MAKE) clean $(CONFIG_SHELL) $(MKSPEC) >$(objtree)/kernel.spec $(call cmd,src_tar,$(KERNELPATH),kernel.spec) |