Skip to content

Commit 13779e1

Browse files
libc: avoid fstrings
maybe old version of python is being used??? Fixes: #342
1 parent 835f987 commit 13779e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zorg/buildbot/builders/annotated/libc-linux.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def main(argv):
8686
runtimes = ['libc']
8787
if fullbuild and not args.asan and not lint_build and not riscv_build:
8888
runtimes.append('compiler-rt')
89-
cmake_args.append(f"-DLLVM_ENABLE_PROJECTS={';'.join(runtimes)}")
89+
cmake_args.append('-DLLVM_ENABLE_PROJECTS={}'.format(';'.join(runtimes)))
9090

9191
if fullbuild and not args.asan and not lint_build and not riscv_build:
9292
cmake_args.append('-DLLVM_LIBC_INCLUDE_SCUDO=ON')

0 commit comments

Comments
 (0)