weston: Change path for default terminal launcher to ${prefix}/bin

If you don't have anything at ~/.config/weston-desktop-shell.ini and
have weston installed somewhere other than /usr, then this patch will
help.

Cheers,

Signed-off-by: Rodney Lorrimar <rodney@rodney.id.au>
This commit is contained in:
Rodney Lorrimar 2012-02-29 17:31:03 +01:00 committed by Kristian Høgsberg
parent fcfc83f6ae
commit 99ff01b816
2 changed files with 2 additions and 1 deletions

View File

@ -48,6 +48,7 @@ noinst_LIBRARIES = libtoytoolkit.a
AM_CFLAGS = $(GCC_CFLAGS)
AM_CPPFLAGS = \
-DDATADIR='"$(datadir)"' \
-DBINDIR='"$(bindir)"' \
$(CLIENT_CFLAGS) $(CAIRO_EGL_CFLAGS)
libtoytoolkit_a_SOURCES = \

View File

@ -698,7 +698,7 @@ add_default_launcher(struct desktop *desktop)
wl_list_for_each(output, &desktop->outputs, link)
panel_add_launcher(output->panel,
DATADIR "/weston/terminal.png",
"/usr/bin/weston-terminal");
BINDIR "/weston-terminal");
}
int main(int argc, char *argv[])