Merge pull request #149 from bjorn/master

Added path of problematic binary when dependency could not be found
This commit is contained in:
probonopd
2017-10-29 14:09:27 +01:00
committed by GitHub
+1
View File
@@ -309,6 +309,7 @@ LddInfo findDependencyInfo(const QString &binaryPath)
// LogDebug() << "ldd outputLine:" << outputLine;
if ((outputLine.contains("not found")) && (qtDetectionComplete == 1)){
LogError() << "ldd outputLine:" << outputLine.replace("\t", "");
LogError() << "for binary:" << binaryPath;
LogError() << "Please ensure that all libraries can be found by ldd. Aborting.";
exit(1);
}