From: Hugo Villeneuve Date: Thu, 21 Sep 2023 14:42:21 +0000 (-0400) Subject: Remove leading spaces from DT_SCHEMA_FILES X-Git-Url: http://gitweb.hugovil.com/?a=commitdiff_plain;h=6d99983c5a9c1b8c987465f82e4e7594b44b01d7;p=hvutilities.git Remove leading spaces from DT_SCHEMA_FILES --- diff --git a/scripts/hvk-dt.sh b/scripts/hvk-dt.sh index aae437f..98c3b80 100755 --- a/scripts/hvk-dt.sh +++ b/scripts/hvk-dt.sh @@ -15,6 +15,11 @@ fi DT_CHECKER="${KMAKE} DT_CHECKER_FLAGS=-m dt_binding_check" +# Remove leading whitespace to avoid the Makefile interpreting DT_SCHEMA_FILES +# as empty like in this example: +# ${DT_CHECKER} DT_SCHEMA_FILES= Documentation/devicetree/bindings... +DT_SCHEMA_FILES=$(echo ${DT_SCHEMA_FILES} | xargs) + if [ x"${DT_SCHEMA_FILES}" != x"" ]; then ${DT_CHECKER} DT_SCHEMA_FILES=${DT_SCHEMA_FILES} fi