File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -290,7 +290,7 @@ jobs:
290
290
291
291
if [ "${MATRIX_RUN}" == "true" ]; then
292
292
if [ "${MATRIX_LIBC}" == "musl" ]; then
293
- sudo apt install musl-dev
293
+ sudo apt install musl-dev musl-tools
294
294
295
295
# GitHub's setup-python action sets `LD_LIBRARY_PATH` which overrides `RPATH`
296
296
# as used in the musl builds.
Original file line number Diff line number Diff line change @@ -2201,7 +2201,7 @@ fn verify_distribution_behavior(dist_path: &Path) -> Result<Vec<String>> {
2201
2201
// that fails this check (e.g. by setting an rpath on just python+libpython).
2202
2202
// https://github.com/pyinstaller/pyinstaller/issues/9204#issuecomment-3171050891
2203
2203
if cfg ! ( target_os = "linux" ) {
2204
- // musl's ldd is packaged in the "musl-dev " Debian package.
2204
+ // musl's ldd is packaged in the "musl-tools " Debian package.
2205
2205
let ldd = if python_json. target_triple . contains ( "-musl" ) && cfg ! ( not( target_env = "musl" ) ) {
2206
2206
"musl-ldd"
2207
2207
} else {
You can’t perform that action at this time.
0 commit comments