diff --git a/src/core/elf.cpp b/src/core/elf.cpp index 6ff738e..9c57454 100644 --- a/src/core/elf.cpp +++ b/src/core/elf.cpp @@ -99,7 +99,11 @@ namespace linuxdeploy { util::trim(libraryPath); paths.push_back(bf::absolute(libraryPath)); } else { - ldLog() << LD_DEBUG << "Invalid ldd output: " << line << std::endl; + if (util::stringContains("not found", line)) { + ldLog() << LD_ERROR << "Could not find dependency:" << line << std::endl; + } else { + ldLog() << LD_DEBUG << "Invalid ldd output: " << line << std::endl; + } } }