summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorSakari Bergen <sakari.bergen@beatwaves.net>2013-03-24 14:51:57 +0200
committerSakari Bergen <sakari.bergen@beatwaves.net>2013-03-24 14:51:57 +0200
commit24816de6ca577eb36c1ce2bd6605303d3c9a9419 (patch)
treebd7f1634fb5912b59b5b4e3e08bb87f20a4e7435 /libs
parent327685610536bf1c008deace0fb335dd829bdc66 (diff)
Fix PBD wscript to be python3 compatible
Diffstat (limited to 'libs')
-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' ]