diff mbox series

kbuild: remove "rpm" target, which is alias of "rpm-pkg"

Message ID 1534473441-16755-1-git-send-email-yamada.masahiro@socionext.com (mailing list archive)
State New, archived
Headers show
Series kbuild: remove "rpm" target, which is alias of "rpm-pkg" | expand

Commit Message

Masahiro Yamada Aug. 17, 2018, 2:37 a.m. UTC
As commit ebaad7d36406 ("kbuild: rpm: prompt to use "rpm-pkg" if "rpm"
target is used") noticed, the "rpm" target is now removed.
I assume people have already migrated to "rpm-pkg".

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
---

 Makefile | 4 ----
 1 file changed, 4 deletions(-)
diff mbox series

Patch

diff --git a/Makefile b/Makefile
index a0650bf..6833b96 100644
--- a/Makefile
+++ b/Makefile
@@ -1338,16 +1338,12 @@  distclean: mrproper
 
 # Packaging of the kernel to various formats
 # ---------------------------------------------------------------------------
-# rpm target kept for backward compatibility
 package-dir	:= scripts/package
 
 %src-pkg: FORCE
 	$(Q)$(MAKE) $(build)=$(package-dir) $@
 %pkg: include/config/kernel.release FORCE
 	$(Q)$(MAKE) $(build)=$(package-dir) $@
-rpm: rpm-pkg
-	@echo "  WARNING: \"rpm\" target will be removed after Linux 4.18"
-	@echo "           Please use \"rpm-pkg\" instead."
 
 
 # Brief documentation of the typical targets used