From b0d0c6c3d528fb2cd93b30876e324f9ad0e2b6cb Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Michael=20Br=C3=BCning?= <michael.bruning@digia.com>
Date: Thu, 2 Oct 2014 14:34:28 +0200
Subject: [PATCH] Provide a fallback for the QtWebEngineProcess executable
 path.

This makes deployment easier and was also what was done in QtWebKit
for the WebKit2 WebProcess executable

Change-Id: I2245c1f3337f19509c08c08c0baf40dc0a964890
Reviewed-by: Allan Sandfeld Jensen <allan.jensen@digia.com>
---
 src/core/web_engine_library_info.cpp | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/src/core/web_engine_library_info.cpp b/src/core/web_engine_library_info.cpp
index 6c1cecc3a..c36a204e9 100644
--- a/src/core/web_engine_library_info.cpp
+++ b/src/core/web_engine_library_info.cpp
@@ -96,18 +96,22 @@ QString subProcessPath()
 {
     static bool initialized = false;
 #if defined(OS_WIN)
-    static QString processPath (location(QLibraryInfo::LibraryExecutablesPath)
-                                % QDir::separator() % QStringLiteral(QTWEBENGINEPROCESS_NAME) % QStringLiteral(".exe"));
+    static QString processBinary (QStringLiteral(QTWEBENGINEPROCESS_NAME) % QStringLiteral(".exe"));
 #else
-    static QString processPath (location(QLibraryInfo::LibraryExecutablesPath)
-                                % QDir::separator() % QStringLiteral(QTWEBENGINEPROCESS_NAME));
+    static QString processBinary (QStringLiteral(QTWEBENGINEPROCESS_NAME));
 #endif
+    static QString processPath (location(QLibraryInfo::LibraryExecutablesPath)
+                                % QDir::separator() % processBinary);
     if (!initialized) {
         // Allow overriding at runtime for the time being.
         const QByteArray fromEnv = qgetenv("QTWEBENGINEPROCESS_PATH");
         if (!fromEnv.isEmpty())
             processPath = QString::fromLatin1(fromEnv);
-        if (processPath.isEmpty() || !QFileInfo(processPath).exists())
+        if (processPath.isEmpty() || !QFileInfo(processPath).exists()) {
+            qWarning("QtWebEngineProcess not found at location %s. Trying fallback path...", qPrintable(processPath));
+            processPath = QCoreApplication::applicationDirPath() % QDir::separator() % processBinary;
+        }
+        if (!QFileInfo(processPath).exists())
             qFatal("QtWebEngineProcess not found at location %s. Try setting the QTWEBENGINEPROCESS_PATH environment variable.", qPrintable(processPath));
         initialized = true;
     }
-- 
GitLab