From ab638a4f5421ede9d4e0c3d16cc2d94bcccf193a Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Sat, 22 Dec 2012 23:37:06 -0500 Subject: [PATCH] gnome-shell-jhbuild: Remove old envvar This isn't used anymore. https://bugzilla.gnome.org/show_bug.cgi?id=690667 --- src/gnome-shell-jhbuild.in | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/gnome-shell-jhbuild.in b/src/gnome-shell-jhbuild.in index 9186f5049..721adb33b 100755 --- a/src/gnome-shell-jhbuild.in +++ b/src/gnome-shell-jhbuild.in @@ -75,9 +75,8 @@ def start_shell(): if 'GI_TYPELIB_PATH' in os.environ: typelib_dir += ':%s' % (os.environ['GI_TYPELIB_PATH'],) - env.update({'GNOME_SHELL_JS' : os.path.join(top_dir, "js"), - 'GNOME_SHELL_BINDIR' : self_dir, - 'GI_TYPELIB_PATH' : typelib_dir, + env.update({'GI_TYPELIB_PATH' : typelib_dir, + 'GNOME_SHELL_JS' : os.path.join(top_dir, "js"), 'GNOME_SHELL_DATADIR' : os.path.join(top_dir, "data"), 'GSETTINGS_SCHEMA_DIR' : os.path.join(top_dir, "data") })