Fix error extracting arguments from project_source_info

Output of make encounters path names that are single-quoted. This
causes the path to be misinterpreted and fail validation.

Resolves error in "make check_cppcheck"

Ref D15801 (partially applied)
This commit is contained in:
Loren Osborn 2022-09-09 16:49:42 +10:00 committed by Campbell Barton
parent 1e6a003860
commit 3baca31719
1 changed files with 3 additions and 1 deletions

View File

@ -30,6 +30,8 @@ from typing import (
cast,
)
import shlex
SOURCE_DIR = join(dirname(__file__), "..", "..")
SOURCE_DIR = normpath(SOURCE_DIR)
@ -160,7 +162,7 @@ def build_info(
for c in compilers:
args = args.replace(c, fake_compiler)
args = args.split()
args = shlex.split(args)
# end
# remove compiler