We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 399d7ed commit bcd7a18Copy full SHA for bcd7a18
docker/build_scripts/finalize.sh
@@ -106,6 +106,5 @@ LC_ALL=C "${MY_DIR}/update-system-packages.sh"
106
107
# patch libstdc++.so (see https://github.com/pypa/manylinux/issues/1760)
108
if [ "${AUDITWHEEL_POLICY}" == "manylinux_2_28" ]; then
109
- LIBSTDCXX=$(find "${DEVTOOLSET_ROOTPATH}" -name 'libstdc++.so')
110
- sed -i 's/INPUT\s*(\s*\([^ ]\+\)\s*\([^ ]\+\)\s*)/INPUT ( \1 \2 \1 )/g' "${LIBSTDCXX}"
+ find "${DEVTOOLSET_ROOTPATH}" -name 'libstdc++.so' -exec sed -i 's/INPUT\s*(\s*\([^ ]\+\)\s*\([^ ]\+\)\s*)/INPUT ( \1 \2 \1 )/g' {} \;
111
fi
0 commit comments