aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2010-03-11 14:29:43 +0100
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2010-03-12 23:46:48 +0100
commit0729cb50a9fb6b2e576eedf998028dd486452da1 (patch)
tree1ffe4488133c13ca8381956de98865f38e27f3a0 /lib/python/Plugins
parenta529e6282d8e84817462dbb4be14adb4dfd6ee84 (diff)
downloadenigma2-0729cb50a9fb6b2e576eedf998028dd486452da1.tar.gz
enigma2-0729cb50a9fb6b2e576eedf998028dd486452da1.zip
refs bug #429
change "mkisofs" to "genisoimage" since it is only a link to genisoimage in oe 1.5 and the link is'n set in oe 1.6
Diffstat (limited to 'lib/python/Plugins')
-rw-r--r--lib/python/Plugins/Extensions/DVDBurn/Process.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Plugins/Extensions/DVDBurn/Process.py b/lib/python/Plugins/Extensions/DVDBurn/Process.py
index f7f44db6..b64541b6 100644
--- a/lib/python/Plugins/Extensions/DVDBurn/Process.py
+++ b/lib/python/Plugins/Extensions/DVDBurn/Process.py
@@ -888,7 +888,7 @@ class DVDJob(Job):
burnargs += [ "-use-the-force-luke=4gms", "-speed=1", "-R" ]
elif output == "iso":
self.name = _("Create DVD-ISO")
- tool = "mkisofs"
+ tool = "genisoimage"
isopathfile = getISOfilename(self.project.settings.isopath.getValue(), volName)
burnargs = [ "-o", isopathfile ]
burnargs += [ "-dvd-video", "-publisher", "Dreambox", "-V", volName, self.workspace + "/dvd" ]
@@ -927,7 +927,7 @@ class DVDdataJob(Job):
if self.project.size/(1024*1024) > self.project.MAX_SL:
burnargs += [ "-use-the-force-luke=4gms", "-speed=1", "-R" ]
elif output == "iso":
- tool = "mkisofs"
+ tool = "genisoimage"
self.name = _("Create DVD-ISO")
isopathfile = getISOfilename(self.project.settings.isopath.getValue(), volName)
burnargs = [ "-o", isopathfile ]