Fix PBD wscript to be python3 compatible
authorSakari Bergen <sakari.bergen@beatwaves.net>
Sun, 24 Mar 2013 12:51:57 +0000 (14:51 +0200)
committerSakari Bergen <sakari.bergen@beatwaves.net>
Sun, 24 Mar 2013 12:51:57 +0000 (14:51 +0200)
libs/pbd/wscript

index 4cb4a20f3ea3346f4f013e8d73adbf6eac3d30e4..aa5431e705959ea3164739af8250ec90ed6142aa 100644 (file)
@@ -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' ]