kinfocenter6/0002-Look-for-binaries-in-Mesa-demos-path-as-well.patch
Fabian Vogt acb5906ade - Update spec to the current state of things:
* Requires aha if fwupd
  * Requires clinfo if OpenCL is installed
  * Requires dmidecode to show device Product Name, Serial Number
    and information on system memory 
  * Recommends libdisplay-info-tools (/usr/bin/di-edid-decode)
    for EDID kcm.
  * Requires /usr/bin/eglinfo, instead of Recommends.
  * Deprecate update-desktop-files
    (https://en.opensuse.org/openSUSE:Update-desktop-files_deprecation)

OBS-URL: https://build.opensuse.org/package/show/KDE:Frameworks/kinfocenter6?expand=0&rev=53
2025-02-28 14:14:17 +00:00

32 lines
1.3 KiB
Diff

From 0836341c590dc14626e3e1856fb1917ba07fcb84 Mon Sep 17 00:00:00 2001
From: Fabian Vogt <fabian@ritter-vogt.de>
Date: Tue, 8 Feb 2022 19:06:23 +0100
Subject: [PATCH] Look for binaries in Mesa-demos path as well
eglinfo is not in $PATH (yet, boo#1195695)
---
src/CommandOutputContext.cpp | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/src/CommandOutputContext.cpp b/src/CommandOutputContext.cpp
index dad54a5e..30554499 100644
--- a/src/CommandOutputContext.cpp
+++ b/src/CommandOutputContext.cpp
@@ -27,6 +27,13 @@ CommandOutputContext::CommandOutputContext(const QStringList &findExecutables, c
QStandardPaths::findExecutable(m_executableName, {QStringLiteral("/usr/local/sbin"), QStringLiteral("/usr/sbin"), QStringLiteral("/sbin")});
}
+ // boo#1195695
+ if (m_executablePath.isEmpty()) {
+ m_executablePath =
+ QStandardPaths::findExecutable(m_executableName,
+ {QStringLiteral("/usr/lib64/mesa-demos/egl/opengl"), QStringLiteral("/usr/lib/mesa-demos/egl/opengl")});
+ }
+
m_foundExecutablePaths[executable] = m_executablePath;
for (const QString &findExecutable : findExecutables) {
m_foundExecutablePaths[findExecutable] = QStandardPaths::findExecutable(findExecutable);
--
2.36.1