Skip to content
Snippets Groups Projects
Verified Commit 94e68ccb authored by Jan Niklas Hasse's avatar Jan Niklas Hasse Committed by Ralph Giles
Browse files

Use Python 3 compatible print function in SConstruct


Signed-off-by: default avatarRalph Giles <giles@thaumas.net>
parent 31e885ea
No related branches found
No related tags found
No related merge requests found
...@@ -110,11 +110,11 @@ conf = Configure(env, custom_tests = { ...@@ -110,11 +110,11 @@ conf = Configure(env, custom_tests = {
}) })
if not conf.CheckPKGConfig('0.15.0'): if not conf.CheckPKGConfig('0.15.0'):
print 'pkg-config >= 0.15.0 not found.' print('pkg-config >= 0.15.0 not found.')
Exit(1) Exit(1)
if not conf.CheckPKG('ogg'): if not conf.CheckPKG('ogg'):
print 'libogg not found.' print('libogg not found.')
Exit(1) Exit(1)
if conf.CheckPKG('vorbis vorbisenc'): if conf.CheckPKG('vorbis vorbisenc'):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment