From 9169383db22e2fe933401ce464229fadff4d82d6 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 5 May 2015 22:51:17 -0400 Subject: [PATCH] fix static library build --- libs/audiographer/wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/audiographer/wscript b/libs/audiographer/wscript index 2fe2739741..d3efbf59ef 100644 --- a/libs/audiographer/wscript +++ b/libs/audiographer/wscript @@ -70,7 +70,7 @@ def build(bld): # macros for this shared library audiographer.defines = [ 'LIBAUDIOGRAPHER_DLL_EXPORTS=1' ] else: - audiographer = bld.stlib(features = 'c cxx cstlib cxxstlib', source=libardour_sources) + audiographer = bld.stlib(features = 'c cxx cstlib cxxstlib', source=audiographer_sources) audiographer.cxxflags = [ '-fPIC' ] audiographer.cflags = [ '-fPIC' ] audiographer.defines = []