(minor) provide more info on symlink failure

This commit is contained in:
Sitaram Chamarty 2010-10-19 15:26:16 +05:30
parent 87cf2d4892
commit a0aecbb012

View file

@ -176,7 +176,7 @@ sub ln_sf
for my $hook ( glob("$srcdir/$glob") ) {
$hook =~ s/$srcdir\///;
unlink "$dstdir/$hook";
symlink "$srcdir/$hook", "$dstdir/$hook" or die "could not symlink $hook\n";
symlink "$srcdir/$hook", "$dstdir/$hook" or die "could not symlink $srcdir/$hook to $dstdir\n";
}
}