summaryrefslogtreecommitdiff
path: root/libs/backends/jack/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'libs/backends/jack/wscript')
-rw-r--r--libs/backends/jack/wscript6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/backends/jack/wscript b/libs/backends/jack/wscript
index a7f1570e05..17b4d160dc 100644
--- a/libs/backends/jack/wscript
+++ b/libs/backends/jack/wscript
@@ -62,7 +62,7 @@ def configure(conf):
def build(bld):
obj = bld(features = 'c cxx cxxshlib')
- obj.source = [
+ obj.source = [
'jack_api.cc',
'jack_connection.cc',
'jack_audiobackend.cc',
@@ -74,7 +74,7 @@ def build(bld):
obj.includes = ['.']
obj.name = 'jack_audiobackend'
obj.target = 'jack_audiobackend'
- obj.defines = ['PACKAGE="' + I18N_PACKAGE + '"',
+ obj.defines = ['PACKAGE="' + I18N_PACKAGE + '"',
'ARDOURBACKEND_DLL_EXPORTS'
]
obj.use = 'libardour libpbd ardouralsautil'
@@ -111,7 +111,7 @@ def build(bld):
#
# device discovery code in the jack backend needs ALSA
# on Linux.
- #
+ #
if re.search ("linux", sys.platform) != None:
obj.uselib += [ 'ALSA' ]