diff options
author | Eric Engestrom <[email protected]> | 2017-09-19 13:56:34 +0100 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2017-09-25 11:57:12 +0100 |
commit | 7d48219b3ac78895315ea6cef3ced3e55d3d92f0 (patch) | |
tree | a8eda30806669392696991393ed9db1cf4e26691 /src/gallium/drivers/llvmpipe/SConscript | |
parent | 3f6a17a8fcdb891409794bb7925a6fb4947b54e1 (diff) |
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 <[email protected]>
Signed-off-by: Eric Engestrom <[email protected]>
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/gallium/drivers/llvmpipe/SConscript')
-rw-r--r-- | src/gallium/drivers/llvmpipe/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/SConscript b/src/gallium/drivers/llvmpipe/SConscript index fbbd22a5299..74d7a9e1673 100644 --- a/src/gallium/drivers/llvmpipe/SConscript +++ b/src/gallium/drivers/llvmpipe/SConscript @@ -4,7 +4,7 @@ import distutils.version Import('*') if not env['llvm']: - print 'warning: LLVM disabled: not building llvmpipe' + print('warning: LLVM disabled: not building llvmpipe') Return() env = env.Clone() |