From: Michael Jeanson Date: Mon, 29 Jun 2020 14:37:33 +0000 (-0400) Subject: jjb: scan-build: Make sure the include dir exists X-Git-Url: http://git.lttng.org./?a=commitdiff_plain;h=05b1bd91bac21de6fd5fbb3bbf2c239fc6256bf5;p=lttng-ci.git jjb: scan-build: Make sure the include dir exists Signed-off-by: Michael Jeanson --- 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)