about summary refs log tree commit diff
path: root/pkgs/build-support
diff options
context:
space:
mode:
authorDavHau <hsngrmpf+github@gmail.com>2020-10-23 13:16:23 +0700
committerGitHub <noreply@github.com>2020-10-23 13:16:23 +0700
commitf833f0406fb561e788de239a0ed9070d3818e442 (patch)
tree0e34af476d34b6df989db48d6a16179d6ace8554 /pkgs/build-support
parent11a08bcfad2523aa94a3cf54abce5894e78feaca (diff)
downloadnixlib-f833f0406fb561e788de239a0ed9070d3818e442.tar
nixlib-f833f0406fb561e788de239a0ed9070d3818e442.tar.gz
nixlib-f833f0406fb561e788de239a0ed9070d3818e442.tar.bz2
nixlib-f833f0406fb561e788de239a0ed9070d3818e442.tar.lz
nixlib-f833f0406fb561e788de239a0ed9070d3818e442.tar.xz
nixlib-f833f0406fb561e788de239a0ed9070d3818e442.tar.zst
nixlib-f833f0406fb561e788de239a0ed9070d3818e442.zip
autoPatchelfHook: print dependant for missing deps
Diffstat (limited to 'pkgs/build-support')
-rw-r--r--pkgs/build-support/setup-hooks/auto-patchelf.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/build-support/setup-hooks/auto-patchelf.sh b/pkgs/build-support/setup-hooks/auto-patchelf.sh
index a48071e24ebc..df2cbb4e9a28 100644
--- a/pkgs/build-support/setup-hooks/auto-patchelf.sh
+++ b/pkgs/build-support/setup-hooks/auto-patchelf.sh
@@ -228,7 +228,7 @@ autoPatchelf() {
     # autoPatchelfIgnoreMissingDeps is not set
     local depsMissing=0
     for failedDep in "${!autoPatchelfFailedDeps[@]}"; do
-      echo "autoPatchelfHook could not satisfy dependency $failedDep"
+      echo "autoPatchelfHook could not satisfy dependency $failedDep wanted by ${autoPatchelfFailedDeps[$failedDep]}"
       depsMissing=1
     done
     if [[ $depsMissing == 1 && -z "$autoPatchelfIgnoreMissingDeps" ]]; then