From 3c8db75b2ffdba1627a7030a4b57ce7ee8e474f2 Mon Sep 17 00:00:00 2001 From: William Jon McCann Date: Fri, 18 Apr 2008 16:11:59 -0400 Subject: install scripts into $(prefix)/lib instead of $libdir We don't want scripts going into lib64... --- src/ck-manager.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/ck-manager.c') diff --git a/src/ck-manager.c b/src/ck-manager.c index 0e4a7c9..c491e14 100644 --- a/src/ck-manager.c +++ b/src/ck-manager.c @@ -1358,7 +1358,7 @@ ck_manager_restart (CkManager *manager, log_system_restart_event (manager); error = NULL; - res = g_spawn_command_line_async (LIBDIR "/ConsoleKit/scripts/ck-system-restart", + res = g_spawn_command_line_async (PREFIX "/lib/ConsoleKit/scripts/ck-system-restart", &error); if (! res) { GError *new_error; @@ -1416,7 +1416,7 @@ ck_manager_stop (CkManager *manager, log_system_stop_event (manager); error = NULL; - res = g_spawn_command_line_async (LIBDIR "/ConsoleKit/scripts/ck-system-stop", + res = g_spawn_command_line_async (PREFIX "/lib/ConsoleKit/scripts/ck-system-stop", &error); if (! res) { GError *new_error; -- cgit