diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-07-24 12:14:30 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-07-24 12:14:30 +0100 |
| commit | 052ad3b54a2c775e48dd8478aa23998834e7ba32 (patch) | |
| tree | 4fb5911f75ead77392edb8f6f4691a2c58d4a3fb /cscript | |
| parent | 8778b7926b2b644f5726adc97cb15c8b25ac4fe0 (diff) | |
Further adventures in fixing build with options==None.
Diffstat (limited to 'cscript')
| -rw-r--r-- | cscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -41,7 +41,7 @@ def dependencies(target, options): def build(target, options): cmd = './waf configure --disable-examples --prefix=%s' % target.directory - if 'jpeg' in options: + if options is not None and 'jpeg' in options: cmd += ' --jpeg=%s' % options['jpeg'] if target.platform == 'linux': cmd += ' --static' |
