Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
TingDaoK committed Feb 19, 2024
1 parent 10356a2 commit 5805dd2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion builder/imports/awslc.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,4 @@ def cmake_args(self, env):
# Not disable PERL for old GCC to avoid the pre-compiled binary with AVX512
return super().cmake_args(env) + ['-DMY_ASSEMBLER_IS_TOO_OLD_FOR_512AVX=ON']
else:
return super().cmake_args(env)+ ['-DDISABLE_PERL=ON']
return super().cmake_args(env) + ['-DDISABLE_PERL=ON']
2 changes: 1 addition & 1 deletion builder/imports/golang.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def install(self, env):
if cross_compile:
# Path to go binary
env.variables['go_path'] = "/work/"+str(Path(os.path.join(install_dir, 'go/bin')
).relative_to(env.root_dir))
).relative_to(env.root_dir))
else:
# export the PATH directly if not cross compile.
# env.variables['go_path'] = '{}/go/bin'.format(install_dir)
Expand Down

0 comments on commit 5805dd2

Please sign in to comment.