diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-06-15 22:41:02 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-06-15 22:41:02 +0100 |
| commit | a5bf0e4edbdbf7a0818666313b1d3909986342f1 (patch) | |
| tree | cc7260efd7e7297c6452dc6ac22ddef0512dfaa6 /cscript | |
| parent | 5973e38f9bb599c4712c9b886f8ca8f4a94c7cea (diff) | |
Fix thinko in dependencies specification.
Diffstat (limited to 'cscript')
| -rw-r--r-- | cscript | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |
