Skip to content

Commit ba1346e

Browse files
committed
Don't stop deploy when a library can't be found.
1 parent e6b42aa commit ba1346e

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/shared.cpp

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,13 @@ LddInfo Deploy::findDependencyInfo(const QString &binaryPath)
277277
if (outputLine.contains("not found")){
278278
LogError() << "ldd outputLine:" << outputLine.replace("\t", "");
279279
LogError() << "Please ensure that all libraries can be found by ldd. Aborting.";
280-
exit(1);
280+
281+
/* FIXME: Can't continue the deploy process because exiting, making
282+
* the app crash.
283+
* This situation must be handled in a different way, or simply
284+
* ignore those "not found" lines.
285+
*/
286+
// exit(1);
281287
}
282288
}
283289

0 commit comments

Comments
 (0)