bin/116908: [patch] pkg_create(1): pkg_create -b makes invalid
packages for bsdpan-*
Jasper Koolhaas
jasper at geluidsnet.nl
Tue Nov 17 13:10:03 UTC 2009
The following reply was made to PR bin/116908; it has been noted by GNATS.
From: Jasper Koolhaas <jasper at geluidsnet.nl>
To: bug-followup at FreeBSD.org, steve at mouf.net
Cc:
Subject: Re: bin/116908: [patch] pkg_create(1): pkg_create -b makes invalid packages for bsdpan-*
Date: Tue, 17 Nov 2009 13:44:51 +0100
This diff still gives me an error, but pointed me to a fix in /usr/
local/lib/perl5/5.8.9/BSDPAN/ExtUtils/Packlist.pm that works for me:
53c53
< push @packinglist, "\@name $pkg_name\n", "\@cwd /\n";
---
> push @packinglist, "\@name $pkg_name\n", "\@cwd /usr/
local/\n";
59,60c59,63
< push @packinglist, "$_\n"
< for @files;
---
> for (@files) {
> s|^/usr/local/||;
> push @packinglist, "$_\n";
> }
>
Kind regards, Jasper Koolhaas
More information about the freebsd-bugs
mailing list