summaryrefslogtreecommitdiff
path: root/libs/pbd/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'libs/pbd/wscript')
-rw-r--r--libs/pbd/wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/pbd/wscript b/libs/pbd/wscript
index 4cb4a20f3e..aa5431e705 100644
--- a/libs/pbd/wscript
+++ b/libs/pbd/wscript
@@ -112,10 +112,10 @@ def build(bld):
# Library
if bld.is_defined ('INTERNAL_SHARED_LIBS'):
- print 'BUILD SHARED LIB'
+ print('BUILD SHARED LIB')
obj = bld.shlib(features = 'cxx cxxshlib', source=libpbd_sources)
else:
- print 'BUILD STATIC LIB'
+ print('BUILD STATIC LIB')
obj = bld.stlib(features = 'cxx cxxstlib', source=libpbd_sources)
obj.cxxflags = [ '-fPIC' ]