summaryrefslogtreecommitdiff
path: root/dh_perl
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2013-05-09 10:13:46 -0400
committerJoey Hess <joey@kitenet.net>2013-05-09 10:13:46 -0400
commitd934f613e9b584840e351f0a0e00e433cd7b466a (patch)
tree94a0762b0aac94db232b77eeda336be427c5fbdc /dh_perl
parent4110f3dd853ec65df5bdef871b7bb313ba599709 (diff)
dh_compress, dh_perl: Avoid failing if the package build directory does not exist.
Diffstat (limited to 'dh_perl')
-rwxr-xr-xdh_perl2
1 files changed, 2 insertions, 0 deletions
diff --git a/dh_perl b/dh_perl
index bf2506c5..ddea2cd9 100755
--- a/dh_perl
+++ b/dh_perl
@@ -90,6 +90,8 @@ use constant XS_MODULE => 4;
foreach my $package (@{$dh{DOPACKAGES}}) {
my $tmp=tmpdir($package);
+ next unless -d $tmp;
+
# Check also for alternate locations given on the command line
my @dirs = grep -d, map "$tmp/$_", $vendorlib, $vendorarch, @ARGV;