From 64490e88e4f8c5fe7ad04ac25ca7f1d2cb29f90e Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 17 Dec 2014 22:28:44 -0500 Subject: [PATCH] No need to yell. --- libs/pbd/wscript | 2 -- 1 file changed, 2 deletions(-) diff --git a/libs/pbd/wscript b/libs/pbd/wscript index 1702627cc0..0b3b5dbf2d 100644 --- a/libs/pbd/wscript +++ b/libs/pbd/wscript @@ -117,11 +117,9 @@ def build(bld): # Library if bld.is_defined ('INTERNAL_SHARED_LIBS'): - print('BUILD SHARED LIB') obj = bld.shlib(features = 'cxx cxxshlib', source=libpbd_sources) obj.defines = [ 'LIBPBD_DLL_EXPORTS=1' ] else: - print('BUILD STATIC LIB') obj = bld.stlib(features = 'cxx cxxstlib', source=libpbd_sources) obj.cxxflags = [ '-fPIC' ] obj.cflags = [ '-fPIC' ]