We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
quickstart
1 parent 68f0434 commit 47a4eaeCopy full SHA for 47a4eae
ci/cloudbuild/builds/lib/quickstart.sh
@@ -61,6 +61,8 @@ function quickstart::run_cmake_and_make() {
61
io::log "[ Make ]"
62
PKG_CONFIG_PATH="${prefix}/lib64/pkgconfig:${prefix}/lib/pkgconfig:${PKG_CONFIG_PATH:-}" \
63
make -C "${src_dir}"
64
- test "${#run_args[@]}" -eq 0 || "${src_dir}/quickstart" "${run_args[@]}"
+ test "${#run_args[@]}" -eq 0 ||
65
+ LD_LIBRARY_PATH="${prefix}/lib64:${prefix}/lib:${LD_LIBRARY_PATH:-}" \
66
+ "${src_dir}/quickstart" "${run_args[@]}"
67
done
68
}
0 commit comments