Update SConstruct

Fixed framework presence check to avoid TypeError:
TypeError: a bytes-like object is required, not 'str':
This commit is contained in:
Dirk Vanden Boer 2020-02-27 21:03:43 +01:00 committed by GitHub
parent e3f4e76c47
commit ddd2ceae63
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -691,7 +691,7 @@ def parse_config(context, config, checks='--libs --cflags'):
# and thus breaks knowledge below that gdal worked
# TODO - upgrade our scons logic to support Framework linking
if env['PLATFORM'] == 'Darwin':
if value and '-framework GDAL' in value:
if value and b'-framework GDAL' in value:
env['LIBS'].append('gdal')
if os.path.exists('/Library/Frameworks/GDAL.framework/unix/lib'):
env['LIBPATH'].insert(0,'/Library/Frameworks/GDAL.framework/unix/lib')