From 05b1bd91bac21de6fd5fbb3bbf2c239fc6256bf5 Mon Sep 17 00:00:00 2001 From: Michael Jeanson Date: Mon, 29 Jun 2020 10:37:33 -0400 Subject: [PATCH] jjb: scan-build: Make sure the include dir exists Signed-off-by: Michael Jeanson --- scripts/common/scan-build.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/common/scan-build.sh b/scripts/common/scan-build.sh index 3782f4f..7a703e1 100755 --- a/scripts/common/scan-build.sh +++ b/scripts/common/scan-build.sh @@ -45,6 +45,10 @@ mkdir -p "$TMPDIR" export TMPDIR +# Builds configured with '-Werror=missing-include-dirs' if this directory +# doesn't exist +mkdir -p "$DEPS_INC" + # temp directory to store the scan-build report SCAN_BUILD_TMPDIR=$(mktemp -d) -- 2.34.1