diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2020-02-26 20:53:25 +0300 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2020-03-03 14:49:21 +0300 |
commit | a1af8d71f0e4c6c23eb809de559150bbff296f4d (patch) | |
tree | 87d9e155cf974534b5fd57f6241727face6e3e73 /Documentation/Makefile | |
parent | 3f9070a67a94a2765e99adf0913c30b683a1b840 (diff) | |
download | linux-a1af8d71f0e4c6c23eb809de559150bbff296f4d.tar.xz |
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 <masahiroy@kernel.org>
Diffstat (limited to 'Documentation/Makefile')
-rw-r--r-- | Documentation/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Documentation/Makefile b/Documentation/Makefile index d77bb607aea4..39569a2e1953 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) |