1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Description: Convert source to use Debian platform customizations.
Upstream includes an easy way to switch the platform from "standard" (i.e.
cdrecord and mkisofs) to "Debian-specific" (i.e. wodim and genisoimage).
This patch flips the PLATFORM constant so that we get Debian customizations.
Author: Kenneth J. Pronovici <pronovic@debian.org>
Index: cedar-backup3/src/CedarBackup3/customize.py
===================================================================
--- cedar-backup3.orig/src/CedarBackup3/customize.py
+++ cedar-backup3/src/CedarBackup3/customize.py
@@ -59,8 +59,8 @@ import logging
logger = logging.getLogger("CedarBackup3.log.customize")
-PLATFORM = "standard"
-# PLATFORM = "debian"
+# PLATFORM = "standard"
+PLATFORM = "debian"
DEBIAN_CDRECORD = "/usr/bin/wodim"
DEBIAN_MKISOFS = "/usr/bin/genisoimage"
|