File 0008-wasm-disable-XDG_RUNTIME_DIR-warning.patch of Package libqt5-qtbase.29898
From 2a65c1ec168a29408702ad10788f72f258ebb538 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Morten=20Johan=20S=C3=B8rvig?= <morten.sorvig@qt.io>
Date: Fri, 22 Mar 2019 09:51:11 +0100
Subject: [PATCH 08/11] wasm: disable XDG_RUNTIME_DIR warning
XDG is not very relevant on the Web platform.
Change-Id: Ibd885e28da15114d0601c73e34dec556e65cbe75
Reviewed-by: David Faure <david.faure@kdab.com>
(cherry picked from c4d46723eb8cd17b17b87df230d502a071f4ac19)
---
src/corelib/io/qstandardpaths_unix.cpp | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/corelib/io/qstandardpaths_unix.cpp b/src/corelib/io/qstandardpaths_unix.cpp
index 748ce67dac..eaa545b4fd 100644
--- a/src/corelib/io/qstandardpaths_unix.cpp
+++ b/src/corelib/io/qstandardpaths_unix.cpp
@@ -134,7 +134,9 @@ QString QStandardPaths::writableLocation(StandardLocation type)
return QString();
}
}
+#ifndef Q_OS_WASM
qWarning("QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '%s'", qPrintable(xdgRuntimeDir));
+#endif
} else {
fileInfo.setFile(xdgRuntimeDir);
if (!fileInfo.exists()) {
--
2.25.1