Skip Menu |

This queue is for tickets about the Text-RecordParser CPAN distribution.

Report information
The Basics
Id: 17079
Status: resolved
Worked: 1 min
Priority: 0/
Queue: Text-RecordParser

People
Owner: kclark [...] cpan.org
Requestors: LTHEGLER [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: v1.0.0
Fixed in: (no value)



Subject: [PATCH] Build.PL fails to install bin/tablify and bin/tabmerge
When the build mechanism was changed from ExtUtils::MakeMaker to Module::Build, installation of the two scripts, tablify and tabmerge, was missed. This patch fixes this. --cut-- --- ./Build.PL.orig Sun Jan 15 13:32:20 2006 +++ ./Build.PL Sun Jan 15 13:32:45 2006 @@ -6,6 +6,7 @@ module_name => 'Text::RecordParser', dist_author => 'Ken Youens-Clark <kclark@cpan.org>', dist_version_from => 'lib/Text/RecordParser.pm', + script_files => ['bin/tablify', 'bin/tabmerge'], add_to_cleanup => [ '$(DISTNAME)-$(VERSION).tar.gz' ], create_makefile_pl => 'passthrough', create_readme => 1, --cut-- /Lars
From: kclark [...] cpan.org
On Sun Jan 15 07:52:14 2006, LTHEGLER wrote: Show quoted text
> When the build mechanism was changed from ExtUtils::MakeMaker to > Module::Build, installation of the two scripts, tablify and tabmerge, > was missed. > > This patch fixes this. > > --cut-- > --- ./Build.PL.orig Sun Jan 15 13:32:20 2006 > +++ ./Build.PL Sun Jan 15 13:32:45 2006 > @@ -6,6 +6,7 @@ > module_name => 'Text::RecordParser', > dist_author => 'Ken Youens-Clark <kclark@cpan.org>', > dist_version_from => 'lib/Text/RecordParser.pm', > + script_files => ['bin/tablify', 'bin/tabmerge'], > add_to_cleanup => [ '$(DISTNAME)-$(VERSION).tar.gz' ], > create_makefile_pl => 'passthrough', > create_readme => 1, > --cut-- > > /Lars
Lars, Thanks for the report. I've just fixed and uploaded 1.0.1 to CPAN. ky