Call the bininst.sh script by its new name.

This commit is contained in:
Jordan K. Hubbard 1995-01-28 01:13:29 +00:00
parent e1babfc54f
commit ea7f178ccb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=5968
2 changed files with 6 additions and 5 deletions

View File

@ -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;
}

View File

@ -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;
}
}