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.6-rc4~13^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eabc8bcb292fb9a5757b0c8ab7751f41b0a104f8;p=thirdparty%2Fkernel%2Fstable.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 4018ad7c7a111..6bc126a14b3d2 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.