diff options
| author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1995-10-22 01:33:02 +0000 |
|---|---|---|
| committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1995-10-22 01:33:02 +0000 |
| commit | 2c4c63e4c98df03e4aa9649bf0662553333fa17f (patch) | |
| tree | 608ef9307125598be4d20cf82f858dee292d462b /release/sysinstall/package.c | |
| parent | e27e7f980f111fd1a11c15f5079dcf81aeb550c1 (diff) | |
Notes
Diffstat (limited to 'release/sysinstall/package.c')
| -rw-r--r-- | release/sysinstall/package.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/release/sysinstall/package.c b/release/sysinstall/package.c index f72813a3f0bc..c2eb28590f67 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.7 1995/10/20 22:36:06 jkh Exp $ + * $Id: package.c,v 1.8 1995/10/21 20:03:07 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -85,7 +85,7 @@ package_extract(Device *dev, char *name) tpid = fork(); if (!tpid) { dup2(fd, 0); - i = vsystem("tar %s-xzf -", !strcmp(variable_get(CPIO_VERBOSITY_LEVEL), "high") ? "-v " : ""); + i = vsystem("tar %s-xzf -", !strcmp(variable_get(VAR_CPIO_VERBOSITY), "high") ? "-v " : ""); if (isDebug()) msgDebug("tar command returns %d status\n", i); exit(i); @@ -95,7 +95,7 @@ package_extract(Device *dev, char *name) tpid = waitpid(tpid, &pstat, 0); if (vsystem("(pwd; cat +CONTENTS) | pkg_add %s-S", - !strcmp(variable_get(CPIO_VERBOSITY_LEVEL), "high") ? "-v " : "")) + !strcmp(variable_get(VAR_CPIO_VERBOSITY), "high") ? "-v " : "")) msgConfirm("An error occurred while trying to pkg_add %s.\n" "Please check debugging screen for possible further details.", path); else |
