summaryrefslogtreecommitdiffstats
path: root/release
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1999-05-14 12:15:34 +0000
committerjkh <jkh@FreeBSD.org>1999-05-14 12:15:34 +0000
commita495fcc3b27777847d2bb2765776c3296240e66f (patch)
treee3f91d55ab5407a23272fe4f29d046e7ca8d7536 /release
parent8a8a702dc2ad6a84232f0efd1ecb484effb273a1 (diff)
downloadFreeBSD-src-a495fcc3b27777847d2bb2765776c3296240e66f.zip
FreeBSD-src-a495fcc3b27777847d2bb2765776c3296240e66f.tar.gz
Correct return status logic a bit.
Diffstat (limited to 'release')
-rw-r--r--release/sysinstall/index.c10
-rw-r--r--release/sysinstall/package.c20
2 files changed, 17 insertions, 13 deletions
diff --git a/release/sysinstall/index.c b/release/sysinstall/index.c
index da4c3e9..7eb3ab3 100644
--- a/release/sysinstall/index.c
+++ b/release/sysinstall/index.c
@@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
- * $Id: index.c,v 1.64 1999/04/06 08:25:52 jkh Exp $
+ * $Id: index.c,v 1.65 1999/05/12 09:02:34 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -70,9 +70,10 @@ _strdup(char *ptr)
static char *descrs[] = {
"Package Selection", "To mark a package, move to it and press SPACE. If the package is\n"
"already marked, it will be unmarked or deleted (if installed).\n"
+ "Items marked with a 'D' are dependencies which will be auto-loaded\n."
"To search for a package by name, press ESC. To select a category,\n"
"press RETURN. NOTE: The All category selection creates a very large\n"
- "submenu. If you select it, please be patient while it comes up.",
+ "submenu! If you select it, please be patient while it comes up.",
"Package Targets", "These are the packages you've selected for extraction.\n\n"
"If you're sure of these choices, select OK.\n"
"If not, select Cancel to go back to the package selection menu.\n",
@@ -626,8 +627,9 @@ index_extract(Device *dev, PkgNodePtr top, PkgNodePtr plist)
int status = DITEM_SUCCESS;
for (tmp = plist->kids; tmp && tmp->name; tmp = tmp->next)
- status |= index_extract_one(dev, top, tmp, FALSE);
- return status;
+ if (DITEM_STATUS(index_extract_one(dev, top, tmp, FALSE)) != DITEM_SUCCESS)
+ status = DITEM_FAILURE;
+ return status | DITEM_RESTORE;
}
int
diff --git a/release/sysinstall/package.c b/release/sysinstall/package.c
index 96058b9..3b0090d 100644
--- a/release/sysinstall/package.c
+++ b/release/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.70 1999/05/12 07:12:01 jkh Exp $
+ * $Id: package.c,v 1.71 1999/05/12 09:02:36 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -117,15 +117,15 @@ package_extract(Device *dev, char *name, Boolean depended)
if (package_exists(name))
return DITEM_SUCCESS;
- /* If necessary, initialize the ldconfig hints */
- if (!file_readable("/var/run/ld.so.hints"))
- vsystem("ldconfig /usr/lib /usr/local/lib /usr/X11R6/lib");
-
if (!dev->init(dev)) {
msgConfirm("Unable to initialize media type for package extract.");
return DITEM_FAILURE;
}
+ /* If necessary, initialize the ldconfig hints */
+ if (!file_readable("/var/run/ld.so.hints"))
+ vsystem("ldconfig /usr/lib /usr/local/lib /usr/X11R6/lib");
+
/* Be initially optimistic */
ret = DITEM_SUCCESS | DITEM_RESTORE;
/* Make a couple of paranoid locations for temp files to live if user specified none */
@@ -136,10 +136,12 @@ package_extract(Device *dev, char *name, Boolean depended)
Mkdir(variable_get(VAR_PKG_TMPDIR));
vsystem("chmod 1777 %s", variable_get(VAR_PKG_TMPDIR));
- if (!strpbrk(name, "-_"))
- sprintf(path, "packages/Latest/%s.tgz", name);
- else if (!index(name, '/'))
- sprintf(path, "packages/All/%s%s", name, strstr(name, ".tgz") ? "" : ".tgz");
+ if (!index(name, '/')) {
+ if (!strpbrk(name, "-_"))
+ sprintf(path, "packages/Latest/%s.tgz", name);
+ else
+ sprintf(path, "packages/All/%s%s", name, strstr(name, ".tgz") ? "" : ".tgz");
+ }
else
sprintf(path, "%s%s", name, strstr(name, ".tgz") ? "" : ".tgz");
OpenPOWER on IntegriCloud