r52314 - /trunk/dh-make-perl/lib/DhMakePerl.pm

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Mon Feb 8 18:23:12 UTC 2010


Author: dmn
Date: Mon Feb  8 18:23:03 2010
New Revision: 52314

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=52314
Log:
fix update_file_list()

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

Modified: trunk/dh-make-perl/lib/DhMakePerl.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/lib/DhMakePerl.pm?rev=52314&op=diff
==============================================================================
--- trunk/dh-make-perl/lib/DhMakePerl.pm (original)
+++ trunk/dh-make-perl/lib/DhMakePerl.pm Mon Feb  8 18:23:03 2010
@@ -1439,22 +1439,23 @@
         # pkgname.foo file
         my $pkg_file = $self->debian_file("$pkgname.$file");
         my %uniq_content;
+        my @existing_content;
 
         # if a package.foo exists read its values first
         if ( -r $pkg_file ) {
             my $fh                = $self->_file_r($pkg_file);
-            my @existing_content = $fh->getlines;
+            @existing_content = $fh->getlines;
             chomp(@existing_content);
 
             # make list of files for package.foo unique
-            $uniq_content{$_} = 1 for @existing_examples;
+            $uniq_content{$_} = 1 for @existing_content;
         }
 
         $uniq_content{$_} = 1 for @$new_content;
 
         # write package.foo file with unique entries
         open F, '>', $pkg_file or die $!;
-        for ( @content, @$new_content ) {
+        for ( @existing_content, @$new_content ) {
 
             # we have the unique hash
             # we delete from it each printed line




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