From 349b9c4fdcb49add63ec71cabd6e4e4dbe6b262d Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Sun, 4 Sep 2016 14:47:05 +0200 Subject: Fix patch to runsystem.hurd * init/init.c (main): Run /libexec/runsystem.hurd instead of /etc/hurd/runsystem.hurd. --- init/init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init/init.c b/init/init.c index fe230daf..c8078dd3 100644 --- a/init/init.c +++ b/init/init.c @@ -138,7 +138,7 @@ main (int argc, char **argv) sa.sa_flags |= SA_RESTART; sigaction (SIGCHLD, &sa, NULL); - char *args[] = { "/etc/hurd/runsystem.hurd", NULL }; + char *args[] = { "/libexec/runsystem.hurd", NULL }; switch (child_pid = fork ()) { -- cgit v1.2.3