From af54a2a37655df26a33bc6783cb472c38f65322f Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sun, 28 Mar 2021 10:31:12 -0500 Subject: [PATCH 1/2] Remove impure smbd search path --- src/core/ksambashare.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/ksambashare.cpp b/src/core/ksambashare.cpp index e810ce4..7cfb4e6 100644 --- a/src/core/ksambashare.cpp +++ b/src/core/ksambashare.cpp @@ -61,7 +61,7 @@ KSambaSharePrivate::~KSambaSharePrivate() bool KSambaSharePrivate::isSambaInstalled() { const bool daemonExists = - !QStandardPaths::findExecutable(QStringLiteral("smbd"), {QStringLiteral("/usr/sbin/"), QStringLiteral("/usr/local/sbin/")}).isEmpty(); + !QStandardPaths::findExecutable(QStringLiteral("smbd")).isEmpty(); if (!daemonExists) { qCDebug(KIO_CORE_SAMBASHARE) << "KSambaShare: Could not find smbd"; } -- 2.30.1 jtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/combinators.scm
AgeCommit message (Expand)Author
2016-05-04utils: Move combinators to (guix combinators)....* guix/utils.scm (compile-time-value, memoize, fold2) (fold-tree, fold-tree-leaves): Move to... * guix/combinators: ... here. New file. * tests/utils.scm ("fold2, 1 list", "fold2, 2 lists") (fold-tree tests): Move to... * tests/combinators.scm: ... here. New file. * Makefile.am (MODULES, SCM_TESTS): Add them. * gnu/packages.scm, gnu/packages/bootstrap.scm, gnu/services/herd.scm, guix/build-system/gnu.scm, guix/build-system/python.scm, guix/derivations.scm, guix/gnu-maintenance.scm, guix/import/elpa.scm, guix/scripts/archive.scm, guix/scripts/build.scm, guix/scripts/graph.scm, guix/scripts/lint.scm, guix/scripts/size.scm, guix/scripts/substitute.scm, guix/serialization.scm, guix/store.scm, guix/ui.scm: Adjust imports accordingly. Ludovic Courtès