Fix incorrect day-of-month in LocalTime.
[libdcp.git] / cscript
diff --git a/cscript b/cscript
index c683d8f3e28ed231607e4234df395bd5e36b3d79..e39268372d0c65dcd6ffdb65481c09e3860efec1 100644 (file)
--- a/cscript
+++ b/cscript
@@ -1,18 +1,18 @@
 import os
 
 def dependencies(target):
-    return (('libcxml', None), ('openjpeg-cdist', '9717d8f'))
+    return (('libcxml', None), ('openjpeg-cdist', '5d8bffd'))
 
 def build(target, options):
-    cmd = './waf configure --prefix=%s' % target.directory
+    cmd = './waf configure --disable-examples --prefix=%s' % target.directory
     if target.platform == 'linux':
         cmd += ' --static'
         if target.distro == 'centos':
             cmd += ' --disable-tests'
     elif target.platform == 'windows':
-        cmd += ' --target-windows'
+        cmd += ' --target-windows --disable-tests'
     elif target.platform == 'osx':
-        cmd += ' --target-osx'
+        cmd += ' --disable-tests'
 
     if target.debug:
         cmd += ' --enable-debug'