summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkos Chandras <hwoarang@gentoo.org>2010-06-14 00:02:28 +0000
committerMarkos Chandras <hwoarang@gentoo.org>2010-06-14 00:02:28 +0000
commit6961deff113cb060cf1f32f42a6c21c21d2f4a63 (patch)
treed31376e6be8f679229ff4c6eb947ed97a509c4a3 /media-video/2mandvd/files/2mandvd-fix-const-char-concatenation.patch
parentInitial commit of pmsvn application. Fixes bug #321797 (diff)
downloadhistorical-6961deff113cb060cf1f32f42a6c21c21d2f4a63.tar.gz
historical-6961deff113cb060cf1f32f42a6c21c21d2f4a63.tar.bz2
historical-6961deff113cb060cf1f32f42a6c21c21d2f4a63.zip
Version bump
Package-Manager: portage-2.2_rc67/cvs/Linux x86_64
Diffstat (limited to 'media-video/2mandvd/files/2mandvd-fix-const-char-concatenation.patch')
-rw-r--r--media-video/2mandvd/files/2mandvd-fix-const-char-concatenation.patch15
1 files changed, 15 insertions, 0 deletions
diff --git a/media-video/2mandvd/files/2mandvd-fix-const-char-concatenation.patch b/media-video/2mandvd/files/2mandvd-fix-const-char-concatenation.patch
new file mode 100644
index 000000000000..b8d01e50a280
--- /dev/null
+++ b/media-video/2mandvd/files/2mandvd-fix-const-char-concatenation.patch
@@ -0,0 +1,15 @@
+Index: 2ManDVD/mainfrm.cpp
+===================================================================
+--- 2ManDVD.orig/mainfrm.cpp
++++ 2ManDVD/mainfrm.cpp
+@@ -1045,8 +1045,8 @@ mainfrm::mainfrm(QWidget *parent) : QMai
+ outext << "growisofs" << endl;
+ outext << "mpeg2enc" << endl;
+ outext << "jpegtopnm /dev/null" << endl;
+- outext << "cat " + "/usr/share/2mandvd//fake.pl" << endl;
+- outext << "rm -f " + homeDir.path() + "/.mdvdep.sh" << endl;
++ outext << "cat " << "/usr/share/2mandvd//fake.pl" << endl;
++ outext << "rm -f " << homeDir.path()<<"/.mdvdep.sh" << endl;
+ outext << "exit" << endl;
+ wmyficext.close();
+ QString programf = "bash";