diff options
author | falkTX <falktx@gmail.com> | 2017-08-11 11:31:10 +0200 |
---|---|---|
committer | falkTX <falktx@gmail.com> | 2017-08-11 11:31:10 +0200 |
commit | d6e158436175ff1ddf5e811d696a3d117a81533d (patch) | |
tree | 268dcad809b0e613a217a56b323f70798066dedf /wscript | |
parent | 8092c758f9d681487532503d4dbc8f8bf1689895 (diff) | |
download | jack2-d6e158436175ff1ddf5e811d696a3d117a81533d.tar.gz |
Fix typo in wscript, leading to an error with --autostart=dbus
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -565,7 +565,7 @@ def configure(conf): conf.env.append_unique('CFLAGS', '-g') conf.env.append_unique('LINKFLAGS', '-g') - if not Options.options.autostart in ['default', 'classic', 'dbus' 'none']: + if not Options.options.autostart in ['default', 'classic', 'dbus', 'none']: conf.fatal('Invalid autostart value "' + Options.options.autostart + '"') if Options.options.autostart == 'default': |