projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
24bec03
)
Report "error" (usually just "File exists", which is harmless)
author
Bodo Möller
<bodo@openssl.org>
Wed, 14 Jun 2000 10:09:46 +0000
(10:09 +0000)
committer
Bodo Möller
<bodo@openssl.org>
Wed, 14 Jun 2000 10:09:46 +0000
(10:09 +0000)
when symlink() fails.
util/mklink.pl
patch
|
blob
|
history
diff --git
a/util/mklink.pl
b/util/mklink.pl
index de555820ec9ef4556f85ff4534d9179309a0bf12..d7b997ada72371edeac5009405c0d652b0038840 100755
(executable)
--- 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";
}