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:
290290
291291 if [ "${MATRIX_RUN}" == "true" ]; then
292292 if [ "${MATRIX_LIBC}" == "musl" ]; then
293- sudo apt install musl-dev
293+ sudo apt install musl-dev musl-tools
294294
295295 # GitHub's setup-python action sets `LD_LIBRARY_PATH` which overrides `RPATH`
296296 # 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>> {
22012201 // that fails this check (e.g. by setting an rpath on just python+libpython).
22022202 // https://github.com/pyinstaller/pyinstaller/issues/9204#issuecomment-3171050891
22032203 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.
22052205 let ldd = if python_json. target_triple . contains ( "-musl" ) && cfg ! ( not( target_env = "musl" ) ) {
22062206 "musl-ldd"
22072207 } else {
You can’t perform that action at this time.
0 commit comments