From 8cf4e9d0da6fd3ad794928faad8619aa66c3ddd3 Mon Sep 17 00:00:00 2001 From: Wolfgang Bauer 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(-) Index: k3b-17.08.2/src/k3bsystemproblemdialog.cpp =================================================================== --- k3b-17.08.2.orig/src/k3bsystemproblemdialog.cpp +++ k3b-17.08.2/src/k3bsystemproblemdialog.cpp @@ -288,12 +288,6 @@ void K3b::SystemProblemDialog::checkSyst #endif } - if (!k3bcore->externalBinManager()->foundBin("cdrskin")) { - problems.append(K3b::SystemProblem(K3b::SystemProblem::CRITICAL, - i18n("Unable to find %1 executable", QString("cdrskin")), - i18n("K3b uses cdrskin in place of cdrecord."), - i18n("Install the libburn package which contains cdrskin"))); - } }