summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-05-12 20:45:17 +0200
committerwm4 <wm4@nowhere>2014-05-24 16:40:42 +0200
commit51d030308e4533f1da4c53202fdd89db1a86f72c (patch)
tree7e2d870bb86caccf58db6844cc869d10822bc468
parent4cd8aab84f4108134dbb11356c7a3f09be945823 (diff)
downloadmpv-51d030308e4533f1da4c53202fdd89db1a86f72c.tar.bz2
mpv-51d030308e4533f1da4c53202fdd89db1a86f72c.tar.xz
build: fix OpenBSD DVD/CDROM device names
Closes #781.
-rw-r--r--waftools/detections/devices.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/waftools/detections/devices.py b/waftools/detections/devices.py
index 2533788691..cf1cca7e90 100644
--- a/waftools/detections/devices.py
+++ b/waftools/detections/devices.py
@@ -3,7 +3,7 @@ __cdrom_devices_map__ = {
'cygwin': 'D:',
'darwin': '/dev/disk1',
'freebsd': '/dev/cd0',
- 'openbsd': '/dev/rcd0r',
+ 'openbsd': '/dev/rcd0c',
'default': '/dev/cdrom'
}
@@ -12,7 +12,7 @@ __dvd_devices_map__ = {
'cygwin': 'D:',
'darwin': '/dev/rdiskN',
'freebsd': '/dev/cd0',
- 'openbsd': '/dev/rcd0r',
+ 'openbsd': '/dev/rcd0c',
'default': '/dev/dvd'
}