diff options
author | Eric Engestrom <eric.engestrom@imgtec.com> | 2017-09-19 13:56:34 +0100 |
---|---|---|
committer | Eric Engestrom <eric.engestrom@imgtec.com> | 2017-09-25 11:57:12 +0100 |
commit | 7d48219b3ac78895315ea6cef3ced3e55d3d92f0 (patch) | |
tree | a8eda30806669392696991393ed9db1cf4e26691 /SConstruct | |
parent | 3f6a17a8fcdb891409794bb7925a6fb4947b54e1 (diff) | |
download | mesa-7d48219b3ac78895315ea6cef3ced3e55d3d92f0.tar.gz |
scons: use python3-compatible print()
These changes were generated using python's `2to3` tool.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=102852
Reported-by: Alex Granni <liviuprodea@yahoo.com>
Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com>
Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/SConstruct b/SConstruct index 696718c8eb4..0215aa83073 100644 --- a/SConstruct +++ b/SConstruct @@ -50,10 +50,10 @@ except KeyError: pass else: targets = targets.split(',') - print 'scons: warning: targets option is deprecated; pass the targets on their own such as' - print - print ' scons %s' % ' '.join(targets) - print + print('scons: warning: targets option is deprecated; pass the targets on their own such as') + print() + print(' scons %s' % ' '.join(targets)) + print() COMMAND_LINE_TARGETS.append(targets) |