Skip to content

Commit dccd66d

Browse files
committed
scripts: Update ITK-source directory to ITKs
This was changed to keep paths shorter for Windows.
1 parent 45ca6ab commit dccd66d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

scripts/internal/manylinux-build-module-wheels.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ for PYBIN in "${PYBINARIES[@]}"; do
3030
echo 'ITK build tree not available!' 1>&2
3131
exit 1
3232
fi
33-
itk_source_dir=/work/standalone-${ARCH}-build/ITK-source
33+
itk_source_dir=/work/standalone-${ARCH}-build/ITKs
3434
ln -fs /ITKPythonPackage/standalone-${ARCH}-build/ /work/standalone-${ARCH}-build
3535
if [[ ! -d ${itk_source_dir} ]]; then
3636
echo 'ITK source tree not available!' 1>&2

scripts/internal/manylinux-build-wheels.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ for PYBIN in "${PYBINARIES[@]}"; do
4040
${PYBIN}/pip install --upgrade -r /work/requirements-dev.txt
4141

4242
build_type=MinSizeRel
43-
source_path=/work/standalone-${ARCH}-build/ITK-source
43+
source_path=/work/standalone-${ARCH}-build/ITKs
4444
build_path=/work/ITK-$(basename $(dirname ${PYBIN}))-manylinux1_${ARCH}
4545
SETUP_PY_CONFIGURE="${script_dir}/../setup_py_configure.py"
4646
SKBUILD_CMAKE_INSTALL_PREFIX=$(${PYTHON_EXECUTABLE} -c "from skbuild.constants import CMAKE_INSTALL_DIR; print(CMAKE_INSTALL_DIR)")

scripts/macpython-build-wheels.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ for VENV in "${VENVS[@]}"; do
7777
build_type="MinSizeRel"
7878
plat_name="macosx-10.9-x86_64"
7979
osx_target="10.9"
80-
source_path=${SCRIPT_DIR}/../standalone-build/ITK-source
80+
source_path=${SCRIPT_DIR}/../standalone-build/ITKs
8181
build_path="${SCRIPT_DIR}/../ITK-${py_mm}-macosx_x86_64"
8282
SETUP_PY_CONFIGURE="${script_dir}/setup_py_configure.py"
8383

scripts/windows_build_wheels.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def build_wheel(python_version, single_wheel=False,
120120
"-r", os.path.join(ROOT_DIR, "requirements-dev.txt")])
121121

122122
build_type = "Release"
123-
source_path = "%s/ITK-source" % STANDALONE_DIR
123+
source_path = "%s/ITKs" % STANDALONE_DIR
124124
build_path = "%s/ITK-win_%s" % (ROOT_DIR, python_version)
125125
setup_py_configure = os.path.join(SCRIPT_DIR, "setup_py_configure.py")
126126

0 commit comments

Comments
 (0)