diff options
author | jkh <jkh@FreeBSD.org> | 1995-12-04 02:22:02 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-12-04 02:22:02 +0000 |
commit | 2c548cde29acf4b8f4126c85460fa8bcdc1f5fdc (patch) | |
tree | 43aee337057effd785ee021e17327036c2e21421 /usr.sbin/sysinstall | |
parent | 494ccac3da0e1adf5311194bc7cb81e5548214ec (diff) | |
download | FreeBSD-src-2c548cde29acf4b8f4126c85460fa8bcdc1f5fdc.zip FreeBSD-src-2c548cde29acf4b8f4126c85460fa8bcdc1f5fdc.tar.gz |
mountdbtab -> mountdtab; whoops!
A small extra diagnostic for loading packages.
Diffstat (limited to 'usr.sbin/sysinstall')
-rw-r--r-- | usr.sbin/sysinstall/package.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/sysinstall/package.c b/usr.sbin/sysinstall/package.c index cd75c08..201fb3d 100644 --- a/usr.sbin/sysinstall/package.c +++ b/usr.sbin/sysinstall/package.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: package.c,v 1.26 1995/11/12 11:02:43 jkh Exp $ + * $Id: package.c,v 1.27 1995/11/12 20:47:15 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -74,6 +74,7 @@ package_extract(Device *dev, char *name) if (!file_readable("/var/run/ld.so.hints")) vsystem("ldconfig /usr/lib /usr/local/lib /usr/X11R6/lib"); + msgNotify("Checking for existence of %s package", name); /* Check to make sure it's not already there */ if (!vsystem("pkg_info -e %s", name)) { msgDebug("package %s marked as already installed - return SUCCESS.\n", name); |