summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2014-06-25 12:30:57 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2014-06-25 12:30:57 -0400
commit3f776ce7d9f0f5610b1c7adecefe57fc63cd0b33 (patch)
tree4476fe0dffede6910d022e1b8931a36926645e29 /libs
parent66af3fbda0bb519dfd73f8e6bda6a7e11b7f806e (diff)
fix incorrect cut-n-paste across synergy
Diffstat (limited to 'libs')
-rwxr-xr-xlibs/backends/wavesaudio/wscript10
1 files changed, 5 insertions, 5 deletions
diff --git a/libs/backends/wavesaudio/wscript b/libs/backends/wavesaudio/wscript
index e4ace64cd6..6905f07bc7 100755
--- a/libs/backends/wavesaudio/wscript
+++ b/libs/backends/wavesaudio/wscript
@@ -31,11 +31,11 @@ def build(bld):
else:
obj = bld(features = 'c cxx cxxshlib')
- if sys.platform == 'darwin':
- if bld.env['build_target'] not in [ 'lion' ]:
- obj.framework = 'CoreMidi'
- else:
- obj.framework = 'CoreMIDI'
+ if sys.platform == 'darwin':
+ if bld.env['build_target'] not in [ 'lion' ]:
+ obj.framework = 'CoreMidi'
+ else:
+ obj.framework = 'CoreMIDI'
obj.source = [
'waves_audiobackend.cc',