From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 26 06:30:33 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE8E616A4CE for ; Thu, 26 Aug 2004 06:30:33 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA67443D69 for ; Thu, 26 Aug 2004 06:30:33 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i7Q6UXWV030154 for ; Thu, 26 Aug 2004 06:30:33 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7Q6UX7M030152; Thu, 26 Aug 2004 06:30:33 GMT (envelope-from gnats) Date: Thu, 26 Aug 2004 06:30:33 GMT Message-Id: <200408260630.i7Q6UX7M030152@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Tim Kientzle Subject: Re: ports/70806: oinkmaster use tar options incompatible to bsdtar X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Tim Kientzle List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Aug 2004 06:30:34 -0000 The following reply was made to PR ports/70806; it has been noted by GNATS. From: Tim Kientzle To: freebsd-gnats-submit@freebsd.org, sanewo@ba2.so-net.ne.jp Cc: Subject: Re: ports/70806: oinkmaster use tar options incompatible to bsdtar Date: Wed, 25 Aug 2004 23:29:01 -0700 You might also just remove the -P option. In gtar, -P has no effect when used with -t. $ gtar -cPf - /etc | gtar -tf - | head /etc/ /etc/defaults/ /etc/defaults/rc.conf /etc/defaults/pccard.conf $ gtar -cPf - /etc | gtar -tPf - | head /etc/ /etc/defaults/ /etc/defaults/rc.conf /etc/defaults/pccard.conf