From d6e158436175ff1ddf5e811d696a3d117a81533d Mon Sep 17 00:00:00 2001 From: falkTX Date: Fri, 11 Aug 2017 11:31:10 +0200 Subject: [PATCH] Fix typo in wscript, leading to an error with --autostart=dbus --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index 51ea0087..1527be65 100644 --- a/wscript +++ b/wscript @@ -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': -- 2.11.4.GIT