summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-11-04 15:33:30 +0100
committerCarl Hetherington <cth@carlh.net>2019-11-04 16:25:14 +0100
commite6c3f6df0ba54298e95af887b8c39d978d0b0337 (patch)
tree1f0f2cfbc899b40410627a9336cc0de907fabe57 /cscript
parent23579be63b69013a9cd27514c38fad3ba2aeb77e (diff)
Bump asdcplib to build with python 3.
Diffstat (limited to 'cscript')
-rw-r--r--cscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/cscript b/cscript
index e178420..0d77e36 100644
--- a/cscript
+++ b/cscript
@@ -20,7 +20,7 @@
import os
def dependencies(target):
- return (('asdcplib-cth', '6648afc'), ('libcxml', '0d18df4'), ('libdcp', None))
+ return (('asdcplib-cth', 'd8490c6'), ('libcxml', '0d18df4'), ('libdcp', None))
def build(target, options):
cmd = './waf configure --prefix=%s' % target.directory
@@ -29,7 +29,7 @@ def build(target, options):
if target.distro == 'centos':
cmd += ' --disable-tests'
if target.version == '7':
- # Centos 7 ships with glibmm 2.50.0 which requires C++11
+ # Centos 7 ships with glibmm 2.50.0 which requires C++11
# but its compiler (gcc 4.8.5) defaults to C++97. Go figure.
# I worry that this will cause ABI problems but I don't have
# a better solution.