summaryrefslogtreecommitdiff
path: root/tools/autowaf.py
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2014-07-13 08:35:21 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2014-07-13 08:36:17 -0400
commit5b85c5f0bfaaf91cd6c6f3e908ea884b0e81b29e (patch)
tree800965c85e1b58bb7958204a88acf304e72ce623 /tools/autowaf.py
parent4af088c251468caf922387e7d87788048745c2a6 (diff)
python3 fix for autowaf.py
Diffstat (limited to 'tools/autowaf.py')
-rw-r--r--tools/autowaf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/autowaf.py b/tools/autowaf.py
index 5e6cbb0897..f5996d9cd2 100644
--- a/tools/autowaf.py
+++ b/tools/autowaf.py
@@ -168,7 +168,7 @@ def normpath(path):
def ensure_visible_symbols(bld, visible):
if bld.env['MSVC_COMPILER']:
if visible:
- print '*** WARNING: MSVC does not allow symbols to be visible/exported by default while building ' + bld.name
+ print ('*** WARNING: MSVC does not allow symbols to be visible/exported by default while building ' + bld.name)
else:
pass
else: