r54453 - /trunk/dh-make-perl/lib/DhMakePerl/Command/make.pm
    dmn at users.alioth.debian.org 
    dmn at users.alioth.debian.org
       
    Wed Mar 17 20:31:57 UTC 2010
    
    
  
Author: dmn
Date: Wed Mar 17 20:31:53 2010
New Revision: 54453
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=54453
Log:
::Dependencies::add can convert its arguments to ::Dependency; don't do it explicitly
Modified:
    trunk/dh-make-perl/lib/DhMakePerl/Command/make.pm
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=54453&op=diff
==============================================================================
--- trunk/dh-make-perl/lib/DhMakePerl/Command/make.pm (original)
+++ trunk/dh-make-perl/lib/DhMakePerl/Command/make.pm Wed Mar 17 20:31:53 2010
@@ -128,7 +128,7 @@
 
     my $extradeps = $self->extract_depends( $apt_contents, 0 );
     $bin->Depends->add($extradeps);
-    $bin->Depends->add( Debian::Dependencies->new( $self->cfg->depends ) )
+    $bin->Depends->add( $self->cfg->depends )
         if $self->cfg->depends;
 
     $self->extract_docs;
    
    
More information about the Pkg-perl-cvs-commits
mailing list