Skip to content

Commit b9f4b5c

Browse files
committed
fix
1 parent 5d6db72 commit b9f4b5c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.

src/validation.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 {

0 commit comments

Comments
 (0)