13
0

fix for --test build on OSX

git-svn-id: svn://localhost/ardour2/branches/3.0@12262 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2012-05-14 13:34:50 +00:00
parent 7d09c5627b
commit 69a242ba64

View File

@ -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():