Use --mutter-plugins instead of --clutter-plugins

Command line option to metacity has been changed, match that.

svn path=/trunk/; revision=4
This commit is contained in:
Owen Taylor 2008-10-31 12:41:01 +00:00
parent d6dae414a4
commit cbacd17c05

View File

@ -46,7 +46,7 @@ try:
'GI_TYPELIB_PATH' : plugin_dir, 'GI_TYPELIB_PATH' : plugin_dir,
'LD_LIBRARY_PATH' : os.environ.get('LD_LIBRARY_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 = '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 print args
subprocess.Popen(args, env=env) subprocess.Popen(args, env=env)