From 69a242ba6496aa8d4e565a82675ca549a11e4080 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 14 May 2012 13:34:50 +0000 Subject: [PATCH] fix for --test build on OSX git-svn-id: svn://localhost/ardour2/branches/3.0@12262 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/pbd/wscript | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/pbd/wscript b/libs/pbd/wscript index 354d757be0..069936b28f 100644 --- a/libs/pbd/wscript +++ b/libs/pbd/wscript @@ -142,7 +142,8 @@ def build(bld): testobj.includes = obj.includes + ['test', '../pbd'] testobj.uselib = 'CPPUNIT XML SNDFILE' testobj.use = 'libpbd' - testobj.linkflags = ['-lrt'] + if sys.platform != 'darwin': + testobj.linkflags = ['-lrt'] def shutdown():