r57428 - in /trunk/dh-make-perl: Changes lib/DhMakePerl/Command/make.pm

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Tue May 4 05:30:11 UTC 2010


Author: dmn
Date: Tue May  4 05:30:00 2010
New Revision: 57428

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=57428
Log:
modules_already_packaged: fix ModuleInfo instantiation

Modified:
    trunk/dh-make-perl/Changes
    trunk/dh-make-perl/lib/DhMakePerl/Command/make.pm

Modified: trunk/dh-make-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/Changes?rev=57428&op=diff
==============================================================================
--- trunk/dh-make-perl/Changes (original)
+++ trunk/dh-make-perl/Changes Tue May  4 05:30:00 2010
@@ -11,6 +11,8 @@
 
     make: fix a typo (DpkgList -> DpkgLists). Thanks to Dominic Hargreaves
         Debian bug #580101
+
+    modules_already_packaged: fix ModuleInfo instantiation
 
 0.67
     POD: drop "--" in front of the commands.

Modified: trunk/dh-make-perl/lib/DhMakePerl/Command/make.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/lib/DhMakePerl/Command/make.pm?rev=57428&op=diff
==============================================================================
--- trunk/dh-make-perl/lib/DhMakePerl/Command/make.pm (original)
+++ trunk/dh-make-perl/lib/DhMakePerl/Command/make.pm Tue May  4 05:30:00 2010
@@ -502,8 +502,7 @@
                 return;
             }
             if (/.+\.pm$/) {
-                my $mi = Module::Build::ModuleInfo->new_from_file(
-                    $File::Find::name);
+                my $mi = Module::Build::ModuleInfo->new_from_file($_);
                 push @modules, $mi->packages_inside;
             }
         },




More information about the Pkg-perl-cvs-commits mailing list