Skip to content
Snippets Groups Projects
Commit 6a271c80 authored by Eric Müller's avatar Eric Müller :mountain_bicyclist:
Browse files

fix[bazel]: build fix by passing through LD_LIBRARY_PATH

parent 9c9bed04
No related branches found
No related tags found
2 merge requests!389create new experimental release,!387fix[bazel]: build fix by passing through LD_LIBRARY_PATH
Pipeline #24188 passed with stage
in 8 hours, 8 minutes, and 32 seconds
......@@ -532,7 +532,10 @@ class Bazel(Package):
# Increase verbosity of explanation,
" --verbose_explanations"
# Show (formatted) subcommands being executed
" --subcommands=pretty_print" " --jobs={0}".format(make_jobs),
" --subcommands=pretty_print"
# expose LD_LIBRARY_PATH (to fix protoc runtime error during build)
" --action_env=LD_LIBRARY_PATH"
" --jobs={0}".format(make_jobs),
)
@run_before("install")
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment