diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2020-06-26 02:04:32 +0900 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2020-06-30 08:42:26 -0600 |
commit | ce810eeb6540f1210fc78eb430d447b5b93337ab (patch) | |
tree | 3c201d28d0fb17e721251f394d0e7f16cde805fa /Documentation | |
parent | fa714cf58c7c09a454ff9fda2ee8318591128eb6 (diff) | |
download | linux-ce810eeb6540f1210fc78eb430d447b5b93337ab.tar.gz linux-ce810eeb6540f1210fc78eb430d447b5b93337ab.tar.bz2 linux-ce810eeb6540f1210fc78eb430d447b5b93337ab.zip |
dt-bindings: do not build processed-schema.yaml for 'make dt_binding_check'
Currently, processed-schema.yaml is always built, but it is actually
used only for 'make dtbs_check'.
'make dt_binding_check' uses processed-schema-example.yaml instead.
Build processed-schema.yaml only for 'make dtbs_check'.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Link: https://lore.kernel.org/r/20200625170434.635114-3-masahiroy@kernel.org
Signed-off-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/devicetree/bindings/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/devicetree/bindings/Makefile b/Documentation/devicetree/bindings/Makefile index 89976970160e..8190ecf69203 100644 --- a/Documentation/devicetree/bindings/Makefile +++ b/Documentation/devicetree/bindings/Makefile @@ -53,7 +53,7 @@ $(obj)/processed-schema.yaml: DT_MK_SCHEMA_FLAGS := $(DT_MK_SCHEMA_USERONLY_FLAG $(obj)/processed-schema.yaml: $(DT_SCHEMA_FILES) check_dtschema_version FORCE $(call if_changed,mk_schema) -extra-y += processed-schema.yaml +extra-$(CHECK_DTBS) += processed-schema.yaml # Hack: avoid 'Argument list too long' error for 'make clean'. Remove most of # build artifacts here before they are processed by scripts/Makefile.clean |