summaryrefslogtreecommitdiff
path: root/libre/kdenlive/kdenlive-mlt6.patch
blob: f86f93da944e6066a737e41d72ae018cfede02ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
diff --git a/src/mltconnection.cpp b/src/mltconnection.cpp
index 13d0e8d8c..2820c8f7c 100644
--- a/src/mltconnection.cpp
+++ b/src/mltconnection.cpp
@@ -136,14 +136,14 @@ void MltConnection::locateMeltAndProfilesPath(const QString &mltPath)
 #endif
     QString meltPath;
     if (qEnvironmentVariableIsSet("MLT_PREFIX")) {
-        meltPath = qgetenv("MLT_PREFIX") + QStringLiteral("/bin/melt") + exeSuffix;
+        meltPath = qgetenv("MLT_PREFIX") + QStringLiteral("/bin/melt6") + exeSuffix;
     } else {
         meltPath = KdenliveSettings::rendererpath();
     }
     if (!QFile::exists(meltPath)) {
-        meltPath = QDir::cleanPath(profilePath + QStringLiteral("/../../../bin/melt")) + exeSuffix;
+        meltPath = QDir::cleanPath(profilePath + QStringLiteral("/../../../bin/melt6")) + exeSuffix;
         if (!QFile::exists(meltPath)) {
-            meltPath = QStandardPaths::findExecutable("melt");
+            meltPath = QStandardPaths::findExecutable("melt6");
             if (meltPath.isEmpty()) {
                 meltPath = QStandardPaths::findExecutable("mlt-melt");
             }