New issue by twpayne on void-packages repository https://github.com/void-linux/void-packages/issues/34319 Description: ### System * xuname: `Void 5.4.0-86-generic x86_64 GenuineIntel uptodate rF` * package: *affected package(s) including the version*: Sorry, I could not find out which package provides `/usr/sbin/ldd`. ### Expected behavior `ldd --version` prints a version number and copyright notice. ### Actual behavior `ldd --version` fails with the error: ``` /bin/sh: 1: ldd: not found ``` ### Steps to reproduce the behavior With Docker: ```console $ docker run -it voidlinux/voidlinux:latest /bin/sh # ldd /bin/sh: 1: ldd: not found ``` ### Explanation `/usr/sbin/ldd` is a bash script: ```console $ head -n 1 /usr/sbin/ldd #!/bin/bash ``` By default, `bash` is not installed, so `/usr/sbin/ldd` fails with the "not found" error shown above. ### Possible fixes 1. Install `/bin/bash` as part of the base system. 2. Modify `/usr/sbin/ldd` to use `/bin/sh` instead of `/bin/bash`, as `/bin/sh` is part of the base system. Please let me know if you need any further information.