Skip Menu |

This queue is for tickets about the IO-stringy CPAN distribution.

Report information
The Basics
Id: 7132
Status: resolved
Priority: 0/
Queue: IO-stringy

People
Owner: cwhitener [...] gmail.com
Requestors:
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 2.109
Fixed in: (no value)



Subject: IO-stringy/Makefile.PL bug - name should be module name
You have WriteMakefile( NAME => "IO-stringy", VERSION_FROM => "lib/IO/Stringy.pm", It should be WriteMakefile( NAME => "IO::Stringy", VERSION_FROM => "lib/IO/Stringy.pm", otherwise the .packlist gets put in the wrong location
From: julian [...] mehnle.net
The attached patch fixes it.
diff -ruN IO-stringy-2.109/Makefile.PL IO-stringy-2.109-Makefile.PL/Makefile.PL --- IO-stringy-2.109/Makefile.PL 2001-09-07 07:05:15.000000000 +0200 +++ IO-stringy-2.109-Makefile.PL/Makefile.PL 2005-02-09 00:05:08.000000000 +0100 @@ -10,7 +10,7 @@ # Write the Makefile: WriteMakefile( - NAME => "IO-stringy", + NAME => "IO::Stringy", VERSION_FROM => "lib/IO/Stringy.pm", DISTNAME => "IO-stringy", 'dist' => {
Thanks for the fix. It landed in version 2.110 back in 2005. I'm circling back around to this to mark it as resolved. Thanks again, Chase