summaryrefslogtreecommitdiff
path: root/usr.sbin/pkg_install/create
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2001-02-10 17:21:12 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2001-02-10 17:21:12 +0000
commit0cc6cef656bf51980100db927e45298b340ef274 (patch)
tree6da095d3873e0a16e4450db1c6d7880625fb2f93 /usr.sbin/pkg_install/create
parent6d7b1d4995eca9d9b68ed2ae26fce95a6532a5b1 (diff)
Give tar the new -I flag, not -T
Diffstat (limited to 'usr.sbin/pkg_install/create')
-rw-r--r--usr.sbin/pkg_install/create/perform.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/pkg_install/create/perform.c b/usr.sbin/pkg_install/create/perform.c
index c886f86f1f2..e7be0d9c2ea 100644
--- a/usr.sbin/pkg_install/create/perform.c
+++ b/usr.sbin/pkg_install/create/perform.c
@@ -1,7 +1,7 @@
-/* $OpenBSD: perform.c,v 1.11 2000/04/04 15:12:02 espie Exp $ */
+/* $OpenBSD: perform.c,v 1.12 2001/02/10 17:21:11 millert Exp $ */
#ifndef lint
-static const char *rcsid = "$OpenBSD: perform.c,v 1.11 2000/04/04 15:12:02 espie Exp $";
+static const char *rcsid = "$OpenBSD: perform.c,v 1.12 2001/02/10 17:21:11 millert Exp $";
#endif
/*
@@ -282,7 +282,7 @@ make_dist(char *home, char *pkg, char *suffix, package_t *plist)
errx(2, "can't make temp file");
if (! (flist = fdopen(fd, "w")))
errx(2, "can't write to temp file");
- args[nargs++] = "-T";
+ args[nargs++] = "-I";
args[nargs++] = tempfile[current++];
}
fprintf(flist, "%s\n", p->name);