From 2337373a175a55daa21dae2ac10d5daaab2a2cc0 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Tue, 1 Mar 2011 11:56:10 -0500 Subject: [PATCH] gnome-shell: fix running-from-source-dir detection --- src/gnome-shell-jhbuild.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gnome-shell-jhbuild.in b/src/gnome-shell-jhbuild.in index bca0e32f0..e3c932618 100755 --- a/src/gnome-shell-jhbuild.in +++ b/src/gnome-shell-jhbuild.in @@ -144,7 +144,7 @@ def start_dconf_await_service(): def start_shell(perf_output=None): bin_dir = os.path.dirname(os.path.abspath(sys.argv[0])) - if os.path.exists(os.path.join(bin_dir, 'gnome-shell.in')): + if os.path.exists(os.path.join(bin_dir, 'gnome-shell-jhbuild.in')): running_from_source_tree = True top_dir = os.path.dirname(bin_dir) plugin = os.path.join(top_dir, 'src', 'libgnome-shell.la')