diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2020-02-26 20:44:58 +0300 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2020-02-27 04:03:27 +0300 |
commit | eabc8bcb292fb9a5757b0c8ab7751f41b0a104f8 (patch) | |
tree | 20223c54b76b12fbef5149e5adc125dc8279ff3f /Documentation/kbuild | |
parent | c473a8d03ea8e03ca9d649b0b6d72fbcf6212c05 (diff) | |
download | linux-eabc8bcb292fb9a5757b0c8ab7751f41b0a104f8.tar.xz |
kbuild: get rid of trailing slash from subdir- example
obj-* needs a trailing slash for a directory, but subdir-* does not.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'Documentation/kbuild')
-rw-r--r-- | Documentation/kbuild/makefiles.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/kbuild/makefiles.rst b/Documentation/kbuild/makefiles.rst index 4018ad7c7a11..6bc126a14b3d 100644 --- a/Documentation/kbuild/makefiles.rst +++ b/Documentation/kbuild/makefiles.rst @@ -765,7 +765,7 @@ is not sufficient this sometimes needs to be explicit. Example:: #arch/x86/boot/Makefile - subdir- := compressed/ + subdir- := compressed The above assignment instructs kbuild to descend down in the directory compressed/ when "make clean" is executed. |