SlackBuildsOrg/multimedia/2ManDVD/2mandvd-fix-const-char-concatenation.patch
Ponce 1fadcf965f multimedia/2ManDVD: Updated for version 1.3.5.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
2010-07-10 02:17:59 -05:00

13 lines
638 B
Diff

--- 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";