From: Paul Brossier Date: Sun, 15 May 2016 12:16:32 +0000 (+0200) Subject: python/lib/moresetuptools.py: use -framework Accelerate, not accelerate X-Git-Tag: 0.4.4~300^2~39 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=bce913a3eab144502d02349cc2025fd60d633a4f;p=aubio.git python/lib/moresetuptools.py: use -framework Accelerate, not accelerate --- diff --git a/python/lib/moresetuptools.py b/python/lib/moresetuptools.py index 3c2e4cb9..9d1add19 100644 --- a/python/lib/moresetuptools.py +++ b/python/lib/moresetuptools.py @@ -92,7 +92,7 @@ def add_local_aubio_sources(ext): # add accelerate on darwin if sys.platform.startswith('darwin'): - ext.extra_link_args += ['-framework', 'accelerate'] + ext.extra_link_args += ['-framework', 'Accelerate'] ext.define_macros += [('HAVE_ACCELERATE', 1)] ext.define_macros += [('HAVE_WAVWRITE', 1)]