r31145 - /trunk/dh-make-perl/lib/Debian/AptContents.pm

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Fri Feb 27 20:34:09 UTC 2009


Author: dmn
Date: Fri Feb 27 20:34:06 2009
New Revision: 31145

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=31145
Log:
fix filtering by dist

Modified:
    trunk/dh-make-perl/lib/Debian/AptContents.pm

Modified: trunk/dh-make-perl/lib/Debian/AptContents.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/lib/Debian/AptContents.pm?rev=31145&op=diff
==============================================================================
--- trunk/dh-make-perl/lib/Debian/AptContents.pm (original)
+++ trunk/dh-make-perl/lib/Debian/AptContents.pm Fri Feb 27 20:34:06 2009
@@ -176,7 +176,7 @@
 
     return undef unless $schema eq 'deb';
 
-    next if $self->dist and $dist ne $self->dist;
+    return undef if $self->dist and $dist ne $self->dist;
 
     $dir ||= '';    # deb http://there sid main
 




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