If require script fails, don't try to delete installed package.

This commit is contained in:
Jordan K. Hubbard 1993-10-10 20:25:31 +00:00
parent 7f801ea51e
commit bb9863dc0b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=573

View File

@ -1,5 +1,5 @@
#ifndef lint
static const char *rcsid = "$Id: perform.c,v 1.4 1993/09/18 03:38:48 jkh Exp $";
static const char *rcsid = "$Id: perform.c,v 1.5 1993/10/08 01:19:28 jkh Exp $";
#endif
/*
@ -115,7 +115,7 @@ pkg_do(char *pkg)
if (AddMode == MASTER) {
printf("%s\n", where_playpen());
write_plist(&Plist, stdout);
return;
return 0;
}
}
PkgName = find_name(&Plist);
@ -126,7 +126,7 @@ pkg_do(char *pkg)
if (!Fake && vsystem("./%s %s INSTALL", REQUIRE_FNAME, PkgName)) {
whinge("Package %s fails requirements - not installed.",
pkg_fullname);
goto fail;
return 1;
}
}
if (!NoInstall && fexists(INSTALL_FNAME)) {