diff options
author | Dane Springmeyer <dane@dbsgeo.com> | 2014-02-04 11:08:11 -0800 |
---|---|---|
committer | Dane Springmeyer <dane@dbsgeo.com> | 2014-02-04 11:08:11 -0800 |
commit | dc56aeed005c95fa58d76ebd6894935f26a1ec30 (patch) | |
tree | f74123ffd074fec6dd3b82f17160a6b952d4bb38 /configure | |
parent | 6225c5b19514e3fdccec3be7d3566a29bc92d0ac (diff) | |
download | qtlocation-mapboxgl-dc56aeed005c95fa58d76ebd6894935f26a1ec30.tar.gz |
ensure png_cflags is a list
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -99,7 +99,7 @@ def configure_png(o): elif options.png: incpath = os.path.join(options.png,'include') if incpath and os.path.exists(incpath): - o['variables']['png_cflags'] = '-I'+incpath + o['variables']['png_cflags'] = ['-I'+incpath] else: ret = pkg_config('libpng') if not ret: |