From 09dd2f25f888633280234c60c86bc0cb3213bb69 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 26 Nov 2011 19:44:13 +0000 Subject: Use the more portable/correct lib instead of linkflags. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@3647 a436a847-0d15-0410-975c-d299462d15a1 --- wscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wscript b/wscript index 9e79b18..3bc0f9b 100644 --- a/wscript +++ b/wscript @@ -135,7 +135,7 @@ def build(bld): obj.name = 'libraul' obj.target = 'raul' obj.uselib = 'GLIB GTHREAD' - obj.linkflags = ['-lpthread'] + obj.lib = ['pthread'] obj.framework = framework obj.install_path = '${LIBDIR}' obj.vnum = RAUL_LIB_VERSION @@ -165,7 +165,7 @@ def build(bld): obj.target = i obj.install_path = '' obj.cxxflags = [ '-fprofile-arcs', '-ftest-coverage' ] - obj.linkflags = ['-lgcov'] + obj.lib = ['gcov'] set_defines(obj); # Documentation -- cgit v1.2.1