From owner-freebsd-commit Tue Feb 6 14:49:19 1996 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id OAA20294 for freebsd-commit-outgoing; Tue, 6 Feb 1996 14:49:19 -0800 (PST) Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id OAA20284 for cvs-all-outgoing; Tue, 6 Feb 1996 14:49:16 -0800 (PST) Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id OAA20271 for cvs-usrsbin-outgoing; Tue, 6 Feb 1996 14:49:15 -0800 (PST) Received: (from jdp@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id OAA20264 Tue, 6 Feb 1996 14:49:13 -0800 (PST) Date: Tue, 6 Feb 1996 14:49:13 -0800 (PST) From: John Polstra Message-Id: <199602062249.OAA20264@freefall.freebsd.org> To: CVS-committers, cvs-usrsbin Subject: cvs commit: src/usr.sbin/pkg_install/create perform.c Sender: owner-commit@FreeBSD.ORG Precedence: bulk jdp 96/02/06 14:49:13 Modified: usr.sbin/pkg_install/create perform.c Log: Fixed pkg_create to eliminate the limits on the size of the PLIST. Formerly, there were limits on both the number of files (hard-coded into the program) and the number of characters (because of the ARG_MAX limit in exec(2)). In this new version, the filenames are passed to tar through a pipe, using tar's "-T" option, rather than on the command line. Revision Changes Path 1.29 +41 -31 src/usr.sbin/pkg_install/create/perform.c