From bb927a611510f0f7e8fff95d0757a046bd1a8fde Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Mon, 27 Jul 2020 13:13:04 +0100 Subject: [PATCH] Handle missing user_hardware on non-Windows systems --- widgets/mainwindow.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 487f2cbf8..dc3002462 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -719,6 +719,12 @@ MainWindow::MainWindow(QDir const& temp_directory, bool multiple, // run the executable. CMD.EXE returns exit code 1 when it // can't find the target executable. if (exitCode != 1) // CMD.EXE couldn't find file to execute +#else + // We forgo detecting user_hardware failures with exit + // code 127 non-Windows. This is because we use /bin/sh to + // run the executable. /bin/sh returns exit code 127 when it + // can't find the target executable. + if (exitCode != 127) // /bin/sh couldn't find file to execute #endif { subProcessFailed (&p3, exitCode, status);