Skip to content

Commit 5805dd2

Browse files
committed
format
1 parent 10356a2 commit 5805dd2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

builder/imports/awslc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,4 @@ def cmake_args(self, env):
5959
# Not disable PERL for old GCC to avoid the pre-compiled binary with AVX512
6060
return super().cmake_args(env) + ['-DMY_ASSEMBLER_IS_TOO_OLD_FOR_512AVX=ON']
6161
else:
62-
return super().cmake_args(env)+ ['-DDISABLE_PERL=ON']
62+
return super().cmake_args(env) + ['-DDISABLE_PERL=ON']

builder/imports/golang.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def install(self, env):
8181
if cross_compile:
8282
# Path to go binary
8383
env.variables['go_path'] = "/work/"+str(Path(os.path.join(install_dir, 'go/bin')
84-
).relative_to(env.root_dir))
84+
).relative_to(env.root_dir))
8585
else:
8686
# export the PATH directly if not cross compile.
8787
# env.variables['go_path'] = '{}/go/bin'.format(install_dir)

0 commit comments

Comments
 (0)