Skip to content

Commit

Permalink
remove spaces between -G and the generator name (#302)
Browse files Browse the repository at this point in the history
  • Loading branch information
trxcllnt authored May 16, 2024
1 parent 564249b commit 6341e09
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ configure_${CPP_LIB}_cpp() {
. devcontainer-utils-debug-output 'rapids_build_utils_debug' 'configure-all configure-${NAME} configure-${CPP_LIB}-cpp';

local -a cmake_args="(
-G \"${G:-Ninja}\"
-G\"${G:-Ninja}\"
${cmake_args_[*]@Q}
${CPP_DEPS}
${v:+--log-level=VERBOSE}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ build_${PY_LIB}_python_wheel() {
. devcontainer-utils-debug-output 'rapids_build_utils_debug' 'build-all build-${NAME} build-${PY_LIB}-python build-${PY_LIB}-python-wheel';

local -a cmake_args="(
-G \"${G:-Ninja}\"
-G\"${G:-Ninja}\"
${cmake_args_[*]@Q}
${CPP_DEPS}
${v:+--log-level=VERBOSE}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ install_${PY_LIB}_python() {
. devcontainer-utils-debug-output 'rapids_build_utils_debug' 'build-all build-${NAME} build-${PY_LIB}-python build-${PY_LIB}-python-editable install-all install-${NAME} install-${PY_LIB}-python';

local -a cmake_args="(
-G \"${G:-Ninja}\"
-G\"${G:-Ninja}\"
${cmake_args_[*]@Q}
${CPP_DEPS}
${v:+--log-level=VERBOSE}
Expand Down

0 comments on commit 6341e09

Please sign in to comment.