X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=util%2Fmklink.pl;h=d7b997ada72371edeac5009405c0d652b0038840;hb=451e60e99f03298c02a1570d0f167a566e57a974;hp=de555820ec9ef4556f85ff4534d9179309a0bf12;hpb=21f213edfb36f60338cd0aa1e2f8847522b57fa0;p=oweals%2Fopenssl.git diff --git a/util/mklink.pl b/util/mklink.pl index de555820ec..d7b997ada7 100755 --- a/util/mklink.pl +++ b/util/mklink.pl @@ -49,7 +49,7 @@ my $to = join('/', @to_path); my $file; foreach $file (@files) { -# print "ln -s $to/$file $from/$file\n"; - symlink("$to/$file", "$from/$file"); - print $file . " => $from/$file\n"; + my $err = ""; + symlink("$to/$file", "$from/$file") or $err = " [$!]"; + print $file . " => $from/$file$err\n"; }