From: Masahiro Yamada Date: Wed, 26 Feb 2020 17:44:58 +0000 (+0900) Subject: kbuild: get rid of trailing slash from subdir- example X-Git-Tag: v5.10.7~3150^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=eabc8bcb292fb9a5757b0c8ab7751f41b0a104f8;p=platform%2Fkernel%2Flinux-rpi.git 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 --- 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.