r57427 - /trunk/dh-make-perl/lib/DhMakePerl/Command/make.pm

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Tue May 4 05:29:49 UTC 2010


Author: dmn
Date: Tue May  4 05:29:38 2010
New Revision: 57427

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=57427
Log:
modules_already_packages: also skip xt/inc/privinc

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=57427&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:29:38 2010
@@ -488,8 +488,15 @@
 
     File::Find::find(
         sub {
-            if ( basename($File::Find::dir)
-                =~ /^(?:\.(?:git|svn|hg|)|CVS|eg|samples?|examples?|t)$/ )
+            if (basename($File::Find::dir)
+                =~ /^(?:
+                    \.(?:git|svn|hg|)
+                    |CVS
+                    |eg|samples?|examples?
+                    |t|xt
+                    |inc|privinc
+                    )$/x
+                )
             {
                 $File::Find::prune = 1;
                 return;




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