1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: Trigger build failure when libxml2 is not found
Origin: vendor
Bug: http://bugs.debian.org/684070
Forwarded: not-needed
Author: Alessandro Ghedini <ghedo@debian.org>
Reviewed-by: gregor herrmann <gregoa@debian.org>
Last-Update: 2014-05-16
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -209,7 +209,7 @@
" - don't send patches!\n\n".
"Check the README file for more information on versions\n".
"that are tested with XML::LibXML\n\n";
- exit 0 unless $FORCE; # 0 recommended by http://cpantest.grango.org (Notes for CPAN Authors)
+ exit 1 unless $FORCE; # 0 recommended by http://cpantest.grango.org (Notes for CPAN Authors)
}
if ( $@ =~ /^UNTESTED (\S*)/ ) {
warn "Note: libxml2 $1 was not tested with this XML::LibXML version.\n"
|