Skip to content

Commit

Permalink
Make mongoc and mongocxx dependency builds parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
gibber9809 committed Jan 7, 2024
1 parent e0b49ea commit babfee9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/core/tools/scripts/lib_install/mongoc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ if [ $checkinstall_installed -eq 0 ] ; then
--pakdir "${deb_output_dir}" \
)
fi
"${install_command_prefix_args[@]}" cmake --build . --target install
"${install_command_prefix_args[@]}" cmake --build . --target install --parallel

# Clean up
rm -rf "$temp_dir"
2 changes: 1 addition & 1 deletion components/core/tools/scripts/lib_install/mongocxx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ if [ $checkinstall_installed -eq 0 ] ; then
--pakdir "${deb_output_dir}" \
)
fi
"${install_command_prefix_args[@]}" cmake --build . --target install
"${install_command_prefix_args[@]}" cmake --build . --target install --parallel

# Clean up
rm -rf "$temp_dir"

0 comments on commit babfee9

Please sign in to comment.