r24721 - in /trunk/dh-make-perl: debian/changelog dh-make-perl

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Fri Aug 29 13:55:09 UTC 2008


Author: gregoa
Date: Fri Aug 29 13:55:04 2008
New Revision: 24721

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=24721
Log:
Look for 'example' as well as for 'examples'.

Modified:
    trunk/dh-make-perl/debian/changelog
    trunk/dh-make-perl/dh-make-perl

Modified: trunk/dh-make-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/debian/changelog?rev=24721&op=diff
==============================================================================
--- trunk/dh-make-perl/debian/changelog (original)
+++ trunk/dh-make-perl/debian/changelog Fri Aug 29 13:55:04 2008
@@ -10,6 +10,7 @@
   [ gregor herrmann ]
   * "--refresh" also re-creates debian/copyright and makes backups of both
     debian/rules and debian/copyright.
+  * Look for 'example' as well as for 'examples'.
 
  -- Gunnar Wolf <gwolf at debian.org>  Thu, 07 Aug 2008 15:49:12 -0500
 

Modified: trunk/dh-make-perl/dh-make-perl
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/dh-make-perl?rev=24721&op=diff
==============================================================================
--- trunk/dh-make-perl/dh-make-perl (original)
+++ trunk/dh-make-perl/dh-make-perl Fri Aug 29 13:55:04 2008
@@ -713,7 +713,7 @@
 	$dir .= '/' unless $dir =~ m(/$);
 	find(sub {
 		push (@examples, substr($File::Find::name, length($dir)) . '/*')
-			if (/^(examples|eg|samples?)$/i and (! $opts{exclude} or $File::Find::name !~ /$opts{exclude}/)) ;
+			if (/^(examples?|eg|samples?)$/i and (! $opts{exclude} or $File::Find::name !~ /$opts{exclude}/)) ;
 	}, $dir);
 }
 




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