Skip to content

Commit

Permalink
Allow 'false' (executable) for NO_PARALLEL_COMMAND
Browse files Browse the repository at this point in the history
  • Loading branch information
dg0yt committed Jan 14, 2025
1 parent 5d69dc6 commit 2be94f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ports/vcpkg-make/vcpkg_make.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ function(vcpkg_run_shell_as_build)

list(JOIN arg_COMMAND " " cmd)
list(JOIN arg_NO_PARALLEL_COMMAND " " no_par_cmd)
if(no_par_cmd)
if(NOT no_par_cmd STREQUAL "")
set(no_par_cmd NO_PARALLEL_COMMAND ${arg_SHELL} -c "${no_par_cmd}")
endif()
vcpkg_execute_build_process(
Expand Down
2 changes: 1 addition & 1 deletion versions/v-/vcpkg-make.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"versions": [
{
"git-tree": "b606ca83ad134a2ef7f6f010863a96f3e2fe19cf",
"git-tree": "5af3456c1f7742c9d880d70dc678c061b91668c1",
"version-date": "2025-01-13",
"port-version": 0
},
Expand Down

0 comments on commit 2be94f5

Please sign in to comment.