From 9359693d9fea92162fe38768b4c7aaf85b5b967a Mon Sep 17 00:00:00 2001 From: probonopd Date: Thu, 2 Mar 2017 21:21:20 +0100 Subject: [PATCH] Do not exit because this could be a script that patchelf can't work on --- shared/shared.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shared/shared.cpp b/shared/shared.cpp index ab2062f..7d88403 100644 --- a/shared/shared.cpp +++ b/shared/shared.cpp @@ -592,7 +592,7 @@ void runPatchelf(QStringList options) if (patchelftool.exitCode() != 0) { LogError() << "runPatchelf:" << patchelftool.readAllStandardError(); LogError() << "runPatchelf:" << patchelftool.readAllStandardOutput(); - exit(1); + // exit(1); // Do not exit because this could be a script that patchelf can't work on } } @@ -634,7 +634,7 @@ void runStrip(const QString &binaryPath) } else { LogError() << "Could not start patchelf. Process error is" << patchelfread.errorString(); } - exit(1); + // exit(1); // Do not exit because this could be a script that patchelf can't work on } patchelfread.waitForFinished();