Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-1-5]: src/usr.sbin/pkg_install/lib Pull up revision 1.48 (request...
details: https://anonhg.NetBSD.org/src/rev/01ae4ac3c161
branches: netbsd-1-5
changeset: 492842:01ae4ac3c161
user: he <he%NetBSD.org@localhost>
date: Sat Feb 23 18:12:45 2002 +0000
description:
Pull up revision 1.48 (requested by seb):
Synchronize with recent developments:
o Use full path name to tar; fixes PR#14072
diffstat:
usr.sbin/pkg_install/lib/file.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (26 lines):
diff -r 145115f112aa -r 01ae4ac3c161 usr.sbin/pkg_install/lib/file.c
--- a/usr.sbin/pkg_install/lib/file.c Sat Feb 23 18:12:15 2002 +0000
+++ b/usr.sbin/pkg_install/lib/file.c Sat Feb 23 18:12:45 2002 +0000
@@ -1,11 +1,11 @@
-/* $NetBSD: file.c,v 1.37.4.8 2001/03/20 18:12:06 he Exp $ */
+/* $NetBSD: file.c,v 1.37.4.9 2002/02/23 18:12:45 he Exp $ */
#include <sys/cdefs.h>
#ifndef lint
#if 0
static const char *rcsid = "from FreeBSD Id: file.c,v 1.29 1997/10/08 07:47:54 charnier Exp";
#else
-__RCSID("$NetBSD: file.c,v 1.37.4.8 2001/03/20 18:12:06 he Exp $");
+__RCSID("$NetBSD: file.c,v 1.37.4.9 2002/02/23 18:12:45 he Exp $");
#endif
#endif
@@ -667,7 +667,7 @@
} else
strcat(args, "z");
strcat(args, "xpf");
- if (vsystem("%s %s %s %s", TAR_CMD, args, pkg, flist ? flist : "")) {
+ if (vsystem("%s %s %s %s", TAR_FULLPATHNAME, args, pkg, flist ? flist : "")) {
warnx("%s extract of %s failed!", TAR_CMD, pkg);
return 1;
}
Home |
Main Index |
Thread Index |
Old Index