From 24816de6ca577eb36c1ce2bd6605303d3c9a9419 Mon Sep 17 00:00:00 2001 From: Sakari Bergen Date: Sun, 24 Mar 2013 14:51:57 +0200 Subject: [PATCH] Fix PBD wscript to be python3 compatible --- libs/pbd/wscript | 4 ++-- 1 file 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' ]