Fix compiler interpolation

This commit is contained in:
Mikhail f. Shiryaev 2022-03-15 22:22:31 +01:00
parent fa2a9bb9aa
commit 9ad31e983c
No known key found for this signature in database
GPG Key ID: 4B02ED204C7D93F4

View File

@ -168,8 +168,8 @@ def parse_env_variables(
result.append(f"CC={cc}")
result.append(f"CXX={cxx}")
cmake_flags.append(f"-DCMAKE_C_COMPILER=`which {cc}`")
cmake_flags.append(f"-DCMAKE_CXX_COMPILER=`which {cxx}`")
cmake_flags.append(f"-DCMAKE_C_COMPILER={cc}")
cmake_flags.append(f"-DCMAKE_CXX_COMPILER={cxx}")
# Create combined output archive for split build and for performance tests.
if package_type == "performance":