From a5bf0e4edbdbf7a0818666313b1d3909986342f1 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 15 Jun 2016 22:41:02 +0100 Subject: [PATCH] Fix thinko in dependencies specification. --- cscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cscript b/cscript index dd9fa760..956ce5f6 100644 --- a/cscript +++ b/cscript @@ -35,9 +35,9 @@ import os def dependencies(target): if target.platform == 'windows' and target.version == 'xp': - return (('libcxml', 'v0.15.1'), ('openjpeg2-cdist', '94bdab1'), ('asdcplib-cth', 'd2042ad')) - else: return (('libcxml', 'v0.15.1'), ('openjpeg-cdist', '5d8bffd'), ('asdcplib-cth', 'd2042ad')) + else: + return (('libcxml', 'v0.15.1'), ('openjpeg2-cdist', '94bdab1'), ('asdcplib-cth', 'd2042ad')) def build(target, options): cmd = './waf configure --disable-examples --prefix=%s' % target.directory -- 2.30.2