diff --git a/sbin/sysinstall/stage4.c b/sbin/sysinstall/stage4.c index f5ae29d7f520..5ec5a4f17add 100644 --- a/sbin/sysinstall/stage4.c +++ b/sbin/sysinstall/stage4.c @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $Id: stage4.c,v 1.10 1994/11/18 10:12:56 jkh Exp $ + * $Id: stage4.c,v 1.11 1995/01/14 10:31:23 jkh Exp $ * */ @@ -77,7 +77,7 @@ retry: i, j, cpid, zpid, strerror(errno)); /* bininst.sh MUST be the last file on the floppy */ - if (access("/stand/bininst.sh", R_OK) == -1) { + if (access("/stand/scripts/bininst.sh", R_OK) == -1) { AskAbort("CPIO floppy was bad! Please check media for defects and retry."); goto retry; } diff --git a/sbin/sysinstall/stage5.c b/sbin/sysinstall/stage5.c index 520f29944b6c..218233a76464 100644 --- a/sbin/sysinstall/stage5.c +++ b/sbin/sysinstall/stage5.c @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $Id: stage5.c,v 1.16.2.1 1994/11/21 03:12:20 phk Exp $ + * $Id: stage5.c,v 1.17 1994/12/27 23:26:57 jkh Exp $ * */ @@ -43,9 +43,10 @@ stage5() end_dialog(); dialog_active=0; if (exec_sh) - exec (2,"/stand/sh","/stand/-sh", 0); + exec (2, "/stand/sh", "/stand/-sh", 0); else - exec (3,"/stand/bininst","/stand/-bininst", 0); + exec (3, "/stand/scripts/bininst.sh", + "/stand/scripts/-bininst.sh", 0); dialog_active=1; } }