Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-1-5]: src/distrib/utils/sysinst Pull up revision 1.59 (requested ...
details: https://anonhg.NetBSD.org/src/rev/39d0a02f4178
branches: netbsd-1-5
changeset: 490432:39d0a02f4178
user: jhawk <jhawk%NetBSD.org@localhost>
date: Tue Dec 26 06:35:43 2000 +0000
description:
Pull up revision 1.59 (requested by hubertf):
Fix sysinst to require base.tgz (in addition to etc.tgz and
kern.tgz) to successfully install. Fixes PR#11634.
diffstat:
distrib/utils/sysinst/util.c | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diffs (19 lines):
diff -r d145dfe5d0e8 -r 39d0a02f4178 distrib/utils/sysinst/util.c
--- a/distrib/utils/sysinst/util.c Tue Dec 26 03:38:53 2000 +0000
+++ b/distrib/utils/sysinst/util.c Tue Dec 26 06:35:43 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: util.c,v 1.51.2.3 2000/10/18 17:51:16 tv Exp $ */
+/* $NetBSD: util.c,v 1.51.2.4 2000/12/26 06:35:43 jhawk Exp $ */
/*
* Copyright 1997 Piermont Information Systems Inc.
@@ -109,6 +109,9 @@
snprintf(buf, STRSIZE, "%s/%s", path, "etc.tgz");
result = result && file_exists_p(buf);
+ snprintf(buf, STRSIZE, "%s/%s", path, "base.tgz");
+ result = result && file_exists_p(buf);
+
return(result);
}
Home |
Main Index |
Thread Index |
Old Index