Add placeholder for kinit's store file name. diff --git a/src/kdeinitinterface.cpp b/src/kdeinitinterface.cpp index 22fa5e5..3d40937 100644 --- a/src/kdeinitinterface.cpp +++ b/src/kdeinitinterface.cpp @@ -52,7 +52,7 @@ void KDEInitInterface::ensureKdeinitRunning() // If not found in system paths, search other paths if (srv.isEmpty()) { const QStringList searchPaths = QStringList() - << QCoreApplication::applicationDirPath() // then look where our application binary is located + << QString::fromUtf8("@SUBSTITUTEME@/bin") // using QStringLiteral would be more efficient, but breaks guix store reference detection. << QLibraryInfo::location(QLibraryInfo::BinariesPath); // look where exec path is (can be set in qt.conf) srv = QStandardPaths::findExecutable(QStringLiteral("kdeinit5"), searchPaths); if (srv.isEmpty()) { td class='sub'>Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/dav.scm
AgeCommit message (Expand)Author
2024-12-23gnu: radicale: Update to 3.3.2....* gnu/packages/dav.scm (radicale): Update to 3.3.2. [build-system]: Switch to pyproject-build-system. [native-inputs]: Remove no longer used python-pytest-runner. Add python-setuptools and python-wheel. [propagated-inputs]: Remove no longer used python-dateutil. Add python-pika. Change-Id: I2fa789fb828cba01bb246e1f747cf170881fc3bb Signed-off-by: Ludovic Courtès <ludo@gnu.org> Jonathan Brielmaier
2024-12-14gnu: vdirsyncer: Fix build....* gnu/packages/dav.scm (vdirsyncer)[native-inputs]: Add python-setuptools, python-wheel. Change-Id: Ie949357cad03d55f79d4d73c1be9aaec50e53696 Efraim Flashner
2024-12-13gnu: vdirsyncer: Move to pyproject-build-system and enable tests....* gnu/packages/dav.scm (vdirsyncer): [build-system]: Move to pyproject-build-system. [arguments]<#:tests?>: Remove to enable tests. <#:test-flags>: Ignore test that require network connection. <#:phases>: Remove check phase replacement. Change-Id: Iafccfc65e3a847a0eecc26c179f435b9ec1fdfec Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr> Nicolas Graves