Skip to content

Commit 18e1305

Browse files
committed
tools: do not hack LD_LIBRARY_PATH
1 parent 29475f0 commit 18e1305

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/build-manylinux.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,8 @@ function check_wheel() {
128128
# if no files found do nothing
129129
[[ -e "$FILE" ]] || continue
130130
python -m auditwheel show "$FILE" || true
131-
LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT_DIR}/${BUILD_DIR}/lib64" python -m auditwheel repair --plat "manylinux_2_28_$PLATFORM" "$FILE" -w .
131+
python -m auditwheel repair --plat "manylinux_2_28_$PLATFORM" "$FILE" -w .
132+
#LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT_DIR}/${BUILD_DIR}/lib64" python -m auditwheel repair --plat "manylinux_2_28_$PLATFORM" "$FILE" -w .
132133
#python -m auditwheel -v repair --plat manylinux_2_28_x86_64 "$FILE" -w .
133134
#python -m auditwheel -v repair --plat manylinux_2_28_aarch64 "$FILE" -w .
134135
done

0 commit comments

Comments
 (0)