1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
Description: prevent test cleanup on clean (this would need DBI in the Build-Depends)
Author: Christoph Berg <myon@debian.org>
Applied-Upstream: no, Debian-specific
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -93,7 +93,7 @@
sub clean { ## no critic (RequireArgUnpacking)
my $string = shift->SUPER::clean(@_);
- $string =~ s{\t}{\tperl t/99_cleanup\.t\n\t};
+ #$string =~ s{\t}{\tperl t/99_cleanup\.t\n\t};
$string .= qq{\nsignature_asc : \n};
$string .= qq{\t@ gpg --yes -ba check_postgres.pl\n};
$string .= qq{\t@ gpg --verify check_postgres.pl.asc\n};
|