Skip to content

Commit 3489284

Browse files
committed
BUG: Do not clobber auditwheel manylinux module wheel
mv is overwriting the manylinux wheel that auditwheel generated previously. This wheel contains the fixed up shared library that points to libtbb from the itk-core package. Otherwise, this will result in: ImportError: libtbb.so.12: cannot open shared object file: No such file or directory at runtime on systems without that library.
1 parent d7148c1 commit 3489284

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,6 @@ done
167167

168168
if compgen -G "dist/itk*-linux*.whl" > /dev/null; then
169169
for itk_wheel in dist/itk*-linux*.whl; do
170-
mv ${itk_wheel} ${itk_wheel/linux/manylinux${MANYLINUX_VERSION}}
170+
rm ${itk_wheel}
171171
done
172172
fi

0 commit comments

Comments
 (0)