Skip to content

Commit

Permalink
Clarify function name.
Browse files Browse the repository at this point in the history
  • Loading branch information
matz-e committed Jul 4, 2024
1 parent 2e96bfc commit 233d970
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packaging/python/build_wheels.bash
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ fi

py_ver=""

clone_install_nmodl_requirements() {
clone_nmodl_and_add_requirements() {
git config --global --add safe.directory /root/nrn
git submodule update --init --recursive --force --depth 1 -- external/nmodl
# We only want the _build_ dependencies
Expand Down Expand Up @@ -70,7 +70,7 @@ build_wheel_linux() {

if [ "$2" == "coreneuron" ]; then
setup_args="--enable-coreneuron"
clone_install_nmodl_requirements
clone_nmodl_and_add_requirements
CMAKE_DEFS="${CMAKE_DEFS},LINK_AGAINST_PYTHON=OFF"
fi

Expand Down Expand Up @@ -120,7 +120,7 @@ build_wheel_osx() {

if [ "$2" == "coreneuron" ]; then
setup_args="--enable-coreneuron"
clone_install_nmodl_requirements
clone_nmodl_and_add_requirements
CMAKE_DEFS="${CMAKE_DEFS},LINK_AGAINST_PYTHON=OFF"
fi

Expand Down

0 comments on commit 233d970

Please sign in to comment.