diff --git a/app/CMakeLists.txt b/app/CMakeLists.txt index a6b6bd9d3..03494d590 100644 --- a/app/CMakeLists.txt +++ b/app/CMakeLists.txt @@ -163,7 +163,7 @@ if(DOXYGEN_FOUND) doxygen_add_docs(docs ALL ${OLIVE_SOURCES}) endif() -set(OLIVE_CRASH_TARGET "crashhandler") +set(OLIVE_CRASH_TARGET "olive-crashhandler") set(OLIVE_CRASH_SOURCES dialog/crashhandler/crashhandler.h diff --git a/app/common/crashhandler.cpp b/app/common/crashhandler.cpp index 450046f08..4844c9736 100644 --- a/app/common/crashhandler.cpp +++ b/app/common/crashhandler.cpp @@ -115,7 +115,7 @@ void crash_handler(int sig) { output.close(); - QString crash_handler_exe = QDir(qApp->applicationDirPath()).filePath(QStringLiteral("crashhandler")); + QString crash_handler_exe = QDir(qApp->applicationDirPath()).filePath(QStringLiteral("olive-crashhandler")); QProcess::startDetached(crash_handler_exe, {log_path}); exit(1);