diff options
Diffstat (limited to 'multimedia/2ManDVD/2mandvd-fix-const-char-concatenation.patch')
-rw-r--r-- | multimedia/2ManDVD/2mandvd-fix-const-char-concatenation.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/multimedia/2ManDVD/2mandvd-fix-const-char-concatenation.patch b/multimedia/2ManDVD/2mandvd-fix-const-char-concatenation.patch new file mode 100644 index 0000000000..1a5fd1c0a8 --- /dev/null +++ b/multimedia/2ManDVD/2mandvd-fix-const-char-concatenation.patch @@ -0,0 +1,13 @@ +--- 2ManDVD/mainfrm.cpp.orig 2010-07-04 15:28:28.000000030 +0200 ++++ 2ManDVD/mainfrm.cpp 2010-07-04 15:29:26.670000516 +0200 +@@ -1045,8 +1045,8 @@ + outext << "growisofs" << endl; + outext << "mpeg2enc" << endl; + outext << "jpegtopnm /dev/null" << endl; +- outext << "cat " + qApp->applicationDirPath() + "/fake.pl" << endl; +- outext << "rm -f " + homeDir.path() + "/.mdvdep.sh" << endl; ++ outext << "cat " << qApp->applicationDirPath() << "/fake.pl" << endl; ++ outext << "rm -f " << homeDir.path() << "/.mdvdep.sh" << endl; + outext << "exit" << endl; + wmyficext.close(); + QString programf = "bash"; |