From f833f0406fb561e788de239a0ed9070d3818e442 Mon Sep 17 00:00:00 2001 From: DavHau Date: Fri, 23 Oct 2020 13:16:23 +0700 Subject: [PATCH] autoPatchelfHook: print dependant for missing deps --- pkgs/build-support/setup-hooks/auto-patchelf.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/build-support/setup-hooks/auto-patchelf.sh b/pkgs/build-support/setup-hooks/auto-patchelf.sh index a48071e24eb..df2cbb4e9a2 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