work around the missing (gtar) -T (--files-from) option of our paxtar
authorgraichen <graichen@openbsd.org>
Sun, 29 Dec 1996 12:18:27 +0000 (12:18 +0000)
committergraichen <graichen@openbsd.org>
Sun, 29 Dec 1996 12:18:27 +0000 (12:18 +0000)
commita92796105ddb79aed9eeb4092c94ea3d016904ec
tree02bf30c875d24f65b778d109979785732a33489b
parent79d95cad442c12302681ce504f8ea3bec9f45916
work around the missing (gtar) -T (--files-from) option of our paxtar
in pkg_create so that it should work now with paxtar (the -X option is
still missing due to missing -X - in the gtar meaning --exclude-from-file
option)

i did it by changing the FreeBSD way of doing it (open a pipe to tar with
-T - (read filenames from stdin) and give all the filenames to the pipe)
to constructing a big :-) argumentlist for tar and executing it without
the pipe (not the best solution but it works :-)
usr.sbin/pkg_install/create/main.c
usr.sbin/pkg_install/create/perform.c
usr.sbin/pkg_install/create/pkg_create.1