Bump libdcp for various fixes to Interop subtitle time parsing.
[dcpomatic.git] / cscript
diff --git a/cscript b/cscript
index 9d48045ec181dff30527fca35a5e180839f840f6..e65d1f5c133ed67ca045fc98fc1f30948b16858f 100644 (file)
--- a/cscript
+++ b/cscript
@@ -236,9 +236,9 @@ def dependencies(target):
     else:
         ffmpeg_options = {}
 
-    return (('ffmpeg-cdist', '4d803a9', ffmpeg_options),
-            ('libdcp', 'f028e8a'),
-            ('libsub', '3d8c3bc'))
+    return (('ffmpeg-cdist', 'aab2fb1', ffmpeg_options),
+            ('libdcp', '8837fe7'),
+            ('libsub', '3e299e5'))
 
 def configure_options(target):
     opt = ''
@@ -371,7 +371,10 @@ def make_manual(target):
     target.command('pdflatex colour.tex')
     return [os.path.abspath('pdf'), os.path.abspath('html'), os.path.abspath('colour.pdf')]
 
-def test(target):
+def test(target, test):
     if target.platform != 'windows':
         target.set('LC_ALL', 'C')
-        target.command('run/tests')
+        if test is None:
+            target.command('run/tests')
+        else:
+            target.command('run/tests --run_test=%s' % test)