diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-08-09 14:19:31 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-08-09 21:51:17 +0900 |
commit | d6c6ab93e17f139c9b7f9b077307ebddc05a7990 (patch) | |
tree | 7f90db1fe0d1249a07bd1f83ccacdd1007519c03 /scripts/Makefile.build | |
parent | 3fca1700c4c38aaec1cea0c143b0ff8da029fd9c (diff) | |
download | linux-stable-d6c6ab93e17f139c9b7f9b077307ebddc05a7990.tar.gz linux-stable-d6c6ab93e17f139c9b7f9b077307ebddc05a7990.tar.bz2 linux-stable-d6c6ab93e17f139c9b7f9b077307ebddc05a7990.zip |
kbuild: remove deprecated host-progs variable
The host-progs has been kept as an alias of hostprogs-y for a long time
(at least since the beginning of Git era), with the clear prompt:
Usage of host-progs is deprecated. Please replace with hostprogs-y!
Enough time for the migration has passed.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Acked-by: Max Filippov <jcmvbkbc@gmail.com>
Diffstat (limited to 'scripts/Makefile.build')
-rw-r--r-- | scripts/Makefile.build | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/scripts/Makefile.build b/scripts/Makefile.build index 514ed63ff571..1adaac4e10d8 100644 --- a/scripts/Makefile.build +++ b/scripts/Makefile.build @@ -53,13 +53,6 @@ endif include scripts/Makefile.lib -ifdef host-progs -ifneq ($(hostprogs-y),$(host-progs)) -$(warning kbuild: $(obj)/Makefile - Usage of host-progs is deprecated. Please replace with hostprogs-y!) -hostprogs-y += $(host-progs) -endif -endif - # Do not include host rules unless needed ifneq ($(hostprogs-y)$(hostprogs-m)$(hostlibs-y)$(hostlibs-m)$(hostcxxlibs-y)$(hostcxxlibs-m),) include scripts/Makefile.host |