Skip to content
Snippets Groups Projects

fix[bazel]: build fix by passing through LD_LIBRARY_PATH

Merged Eric Müller requested to merge maybe_fix_bazel_for_AMue into master
1 file
+ 4
1
Compare changes
  • Side-by-side
  • Inline
+ 4
1
@@ -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")