summaryrefslogtreecommitdiffstats
path: root/waftools
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-05-12 20:45:17 +0200
committerwm4 <wm4@nowhere>2014-05-12 23:24:19 +0200
commit176b4abd5325e8ea3aa268ec896ade56fa3247b3 (patch)
tree61b5a9691211e21c52a44c14a2ef545fa7676ff5 /waftools
parente0e79a2e7edaa86e680553a47f46ebbe78c98df9 (diff)
downloadmpv-176b4abd5325e8ea3aa268ec896ade56fa3247b3.tar.bz2
mpv-176b4abd5325e8ea3aa268ec896ade56fa3247b3.tar.xz
build: fix OpenBSD DVD/CDROM device names
Closes #781.
Diffstat (limited to 'waftools')
-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'
}