summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-06-15 22:41:02 +0100
committerCarl Hetherington <cth@carlh.net>2016-06-15 22:41:02 +0100
commita5bf0e4edbdbf7a0818666313b1d3909986342f1 (patch)
treecc7260efd7e7297c6452dc6ac22ddef0512dfaa6 /cscript
parent5973e38f9bb599c4712c9b886f8ca8f4a94c7cea (diff)
Fix thinko in dependencies specification.
Diffstat (limited to 'cscript')
-rw-r--r--cscript4
1 files 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