summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'media-sound/jack/files/jack-3.0.0-python26.patch')
-rw-r--r--media-sound/jack/files/jack-3.0.0-python26.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/media-sound/jack/files/jack-3.0.0-python26.patch b/media-sound/jack/files/jack-3.0.0-python26.patch
deleted file mode 100644
index 98701345f3b3..000000000000
--- a/media-sound/jack/files/jack-3.0.0-python26.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- jack_functions.py
-+++ jack_functions.py
-@@ -219,9 +219,9 @@
- ff = blocks % CDDA_BLOCKS_PER_SECOND
- return mm, ss, ff, blocks
-
--def starts_with(str, with):
-- "checks whether str starts with with"
-- return str[0:len(with)] == with
-+def starts_with(str, withstr):
-+ "checks whether str starts with withstr"
-+ return str[0:len(withstr)] == withstr