Skip Menu |

This queue is for tickets about the Tk-DBIx CPAN distribution.

Report information
The Basics
Id: 34595
Status: new
Priority: 0/
Queue: Tk-DBIx

People
Owner: Nobody in particular
Requestors: imacat [...] mail.imacat.idv.tw
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: 0.01
Fixed in: (no value)



Subject: Use 'DBI' => 0 Instead of 'DBI => 0' in Makefile.PL
Dear Frank Herrmann, Hi. This is imacat from Taiwan. I found that in the Makefile.PL of your Tk-DBIx-0.01, you list in PREREQ_PM "'DBI => 0'", which should be "'DBI' => 0". The result is that, when installing or testing Tk-DBIx-0.01 with the CPAN or CPANPLUS shells, it fails and cannot continue when looking for prerequisite modules. I have made a simple patch to Tk-DBIx-0.01, in the hope that it helps. Please tell me if you need any more information, or if I could be of any help. Thank you.
Subject: Tk-DBIx-0.01-prereq_pm.diff
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 diff -u -r Tk-DBIx-0.01.orig/Makefile.PL Tk-DBIx-0.01/Makefile.PL - --- Tk-DBIx-0.01.orig/Makefile.PL 2003-12-18 01:49:08.000000000 +0800 +++ Tk-DBIx-0.01/Makefile.PL 2008-04-01 23:13:39.000000000 +0800 @@ -8,7 +8,7 @@ 'PREREQ_PM' => { 'Tk' => 0, 'Tk::ResizeButton' => 0, 'DBIx::Tree' => 0, - - 'DBI => 0' + 'DBI' => 0 }, 'dist' => { 'COMPRESS' => 'gzip -9f', 'SUFFIX' => 'gz' }, ); -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) iEYEARECAAYFAkfyUTkACgkQi9gubzC5S1yFRACeKCcwUwcMBWuD3+7y0L5utz3u 3ToAn04yA/swwGcTQVkLMSUYOH8bJxcr =EGhQ -----END PGP SIGNATURE-----