From: Masahiro Yamada Date: Wed, 26 Feb 2020 17:53:25 +0000 (+0900) Subject: kbuild: remove trailing slash from devicetree/binding/ for descending X-Git-Tag: v5.10.7~2951^2~29 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a1af8d71f0e4c6c23eb809de559150bbff296f4d;p=platform%2Fkernel%2Flinux-rpi.git kbuild: remove trailing slash from devicetree/binding/ for descending obj-* needs a trailing slash for a directory, but subdir-* does not because it already implies a directory. Also, change subdir-y to subdir- to ensure this is effective only for cleaning targets. This makes the cleaning log consistent. (no trailing slash) Before: $ make clean CLEAN Documentation/devicetree/bindings/ After: $ make clean CLEAN Documentation/devicetree/bindings Signed-off-by: Masahiro Yamada --- diff --git a/Documentation/Makefile b/Documentation/Makefile index d77bb60..39569a2 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -2,7 +2,8 @@ # Makefile for Sphinx documentation # -subdir-y := devicetree/bindings/ +# for cleaning +subdir- := devicetree/bindings # Check for broken documentation file references ifeq ($(CONFIG_WARN_MISSING_DOCUMENTS),y)