X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=cscript;h=5ea5a4cfd22e6cccccedb6ef923d7841d6754473;hb=f2954b2d31e00ff6d92a4fe00488a7d0d9792872;hp=fd8d36d1ed726cde6caf61979bad2512d9078f48;hpb=a4129317c46490dabaa9903f7c5ded9550285788;p=dcpomatic.git diff --git a/cscript b/cscript index fd8d36d1e..5ea5a4cfd 100644 --- a/cscript +++ b/cscript @@ -157,7 +157,7 @@ def make_control(debian_version, bits, filename, debug): def dependencies(target): return (('ffmpeg-cdist', '67dc770'), - ('libdcp', 'v0.95.0')) + ('libdcp', '009e07f')) def build(target, options): cmd = './waf configure --prefix=%s' % target.work_dir_cscript() @@ -169,7 +169,10 @@ def build(target, options): if target.version == 'unstable': cmd += ' --debian-unstable' elif target.distro == 'centos': - cmd += ' --target-centos' + if target.version == '6.5': + cmd += ' --target-centos-6 --disable-tests' + elif target.version == '7': + cmd += ' --target-centos-7' target.command(cmd) target.command('./waf')