mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-23 23:48:22 +02:00
41 lines
2 KiB
Diff
41 lines
2 KiB
Diff
From ce2c9900c36376cde471344e699b37f28ececd98 Mon Sep 17 00:00:00 2001
|
|
From: Andreas Sturmlechner <asturm@gentoo.org>
|
|
Date: Thu, 5 Nov 2020 14:39:51 +0100
|
|
Subject: [PATCH] Fix hardcoded docbook install paths for Gentoo
|
|
|
|
Gentoo sets KDE_INSTALL_DOCBUNDLEDIR="${EPREFIX}/usr/share/help".
|
|
|
|
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
|
|
---
|
|
umbrello/umlappprivate.cpp | 8 ++++----
|
|
1 file changed, 4 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/umbrello/umlappprivate.cpp b/umbrello/umlappprivate.cpp
|
|
index 8966837fb..d5a56bfd8 100644
|
|
--- a/umbrello/umlappprivate.cpp
|
|
+++ b/umbrello/umlappprivate.cpp
|
|
@@ -33,17 +33,17 @@ QString UMLAppPrivate::findWelcomeFile()
|
|
|
|
// from custom install
|
|
for(const QString &lang : langList) {
|
|
- dirList.append(QCoreApplication::applicationDirPath() + QString(QStringLiteral("/../share/doc/HTML/%1/umbrello/apphelp")).arg(lang));
|
|
+ dirList.append(QCoreApplication::applicationDirPath() + QString(QStringLiteral("/../share/help/%1/umbrello/apphelp")).arg(lang));
|
|
}
|
|
- dirList.append(QCoreApplication::applicationDirPath() + QStringLiteral("/../share/doc/HTML/en/umbrello/apphelp"));
|
|
+ dirList.append(QCoreApplication::applicationDirPath() + QStringLiteral("/../share/help/en/umbrello/apphelp"));
|
|
|
|
QStringList locations = QStandardPaths::standardLocations(QStandardPaths::GenericDataLocation);
|
|
// from real installation
|
|
for(const QString &location : locations) {
|
|
for (const QString &lang : langList) {
|
|
- dirList.append(QString(QStringLiteral("%1/doc/HTML/%2/umbrello/apphelp")).arg(location).arg(lang));
|
|
+ dirList.append(QString(QStringLiteral("%1/help/%2/umbrello/apphelp")).arg(location).arg(lang));
|
|
}
|
|
- dirList.append(QString(QStringLiteral("%1/doc/HTML/en/umbrello/apphelp")).arg(location));
|
|
+ dirList.append(QString(QStringLiteral("%1/help/en/umbrello/apphelp")).arg(location));
|
|
}
|
|
for(const QString &dir : dirList) {
|
|
QString filePath = dir + QStringLiteral("/index.cache.bz2");
|
|
--
|
|
2.47.0
|
|
|