diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-06-04 19:13:56 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-06-15 19:57:01 +0900 |
commit | 3a51f9081e7b4c7229e1d3cb5ec74bc27ae4ea84 (patch) | |
tree | c149710c239720d129dc78e8e1e964e887169265 /Makefile | |
parent | f3c8d4c7a7280cdc6622adb4f8e39d51b3786d68 (diff) | |
download | linux-3a51f9081e7b4c7229e1d3cb5ec74bc27ae4ea84.tar.bz2 |
kbuild: remove stale dependency between Documentation/ and headers_install
Commit 8e2faea877eb ("Make Documenation depend on headers_install")
dates back to 2014, which is before Sphinx was introduced for the
kernel documentation.
Since none of DOC_TARGET requires headers_install, it is strange to
run it only for the single target "Documentation/".
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1744,8 +1744,7 @@ build-dir = $(patsubst %/,%,$(dir $(build-target))) PHONY += / /: ./ -# Make sure the latest headers are built for Documentation -Documentation/ samples/: headers_install +samples/: headers_install %/: prepare FORCE $(Q)$(MAKE) KBUILD_MODULES=1 $(build)=$(build-dir) |