2017-07-27 07:10:28 +02:00
|
|
|
From 8cf4e9d0da6fd3ad794928faad8619aa66c3ddd3 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Wolfgang Bauer <wbauer@tmo.at>
|
|
|
|
Date: Wed, 26 Jul 2017 17:34:21 +0200
|
|
|
|
Subject: [PATCH] Don't suggest to install libburn
|
|
|
|
|
|
|
|
The message is actually misleading because k3b uses cdrskin which is
|
|
|
|
packaged separately to libburn in openSUSE.
|
|
|
|
|
|
|
|
Let's stick to prefer cdrecord for now.
|
|
|
|
People who want to use cdrskin instead can still install it.
|
|
|
|
(boo#1050715)
|
|
|
|
---
|
|
|
|
src/k3bsystemproblemdialog.cpp | 6 ------
|
|
|
|
1 file changed, 6 deletions(-)
|
|
|
|
|
2020-03-28 14:56:57 +01:00
|
|
|
diff --git a/src/k3bsystemproblemdialog.cpp b/src/k3bsystemproblemdialog.cpp
|
|
|
|
index 805e3354c..1abcb27c8 100644
|
|
|
|
--- a/src/k3bsystemproblemdialog.cpp
|
|
|
|
+++ b/src/k3bsystemproblemdialog.cpp
|
|
|
|
@@ -291,13 +291,6 @@ void K3b::SystemProblemDialog::checkSystem(QWidget* parent, NotificationLevel le
|
2017-07-27 07:10:28 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
- if (!k3bcore->externalBinManager()->foundBin("cdrskin")) {
|
2017-11-21 23:12:49 +01:00
|
|
|
- problems.append(K3b::SystemProblem(K3b::SystemProblem::NON_CRITICAL,
|
2017-07-27 07:10:28 +02:00
|
|
|
- i18n("Unable to find %1 executable", QString("cdrskin")),
|
2017-11-21 23:12:49 +01:00
|
|
|
- i18n("Cdrskin can substitute for cdrecord with data and audio"
|
|
|
|
- " CD, and for growisofs with DVD and BD."),
|
|
|
|
- i18n("Consider to install the libburn and cdrskin packages.")));
|
2017-07-27 07:10:28 +02:00
|
|
|
- }
|
|
|
|
}
|
|
|
|
|
|
|
|
|