[dh-make-perl-cvs-dev] CVS dh-make-perl

CVS User csacca-guest cvs@dh-make-perl.alioth.debian.org
Mon, 11 Apr 2005 21:35:53 +0000


Update of /cvsroot/dh-make-perl/dh-make-perl
In directory haydn:/tmp/cvs-serv8525

Modified Files:
	dh-make-perl 
Log Message:
* dh-make-perl: Die on error from Module::Depends::Intrusive



--- /cvsroot/dh-make-perl/dh-make-perl/dh-make-perl	2005/03/30 18:33:30	1.33
+++ /cvsroot/dh-make-perl/dh-make-perl/dh-make-perl	2005/04/11 21:35:52	1.34
@@ -481,6 +481,9 @@
 
 	my %dep_hash = %{$mod_dep->requires};
 	
+	my $error = $mod_dep->error();
+	die "Error $error\n" if $error;
+	
 	my @uses;
 
 	foreach my $module (keys( %dep_hash )) {