From cbacd17c058ef817c5fa67835fd52000d0fc92ff Mon Sep 17 00:00:00 2001 From: Owen Taylor Date: Fri, 31 Oct 2008 12:41:01 +0000 Subject: [PATCH] Use --mutter-plugins instead of --clutter-plugins Command line option to metacity has been changed, match that. svn path=/trunk/; revision=4 --- scripts/start-in-Xephyr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/start-in-Xephyr b/scripts/start-in-Xephyr index d6f361f6c..93cc1698a 100755 --- a/scripts/start-in-Xephyr +++ b/scripts/start-in-Xephyr @@ -46,7 +46,7 @@ try: 'GI_TYPELIB_PATH' : plugin_dir, 'LD_LIBRARY_PATH' : os.environ.get('LD_LIBRARY_PATH', '') + ':' + plugin_dir}) args = 'DEBUG' in os.environ and os.environ['DEBUG'].split() or [] - args.extend(['metacity', '--clutter-plugins=' + plugin, '--replace']) + args.extend(['metacity', '--mutter-plugins=' + plugin, '--replace']) print args subprocess.Popen(args, env=env)