diff options
| author | beck <> | 2000-12-15 02:58:47 +0000 |
|---|---|---|
| committer | beck <> | 2000-12-15 02:58:47 +0000 |
| commit | 9200bb13d15da4b2a23e6bc92c20e95b74aa2113 (patch) | |
| tree | 5c52d628ec1e34be76e7ef2a4235d248b7c44d24 /src/lib/libcrypto/util/mklink.pl | |
| parent | e131d25072e3d4197ba4b9bcc0d1b27d34d6488d (diff) | |
| download | openbsd-9200bb13d15da4b2a23e6bc92c20e95b74aa2113.tar.gz openbsd-9200bb13d15da4b2a23e6bc92c20e95b74aa2113.tar.bz2 openbsd-9200bb13d15da4b2a23e6bc92c20e95b74aa2113.zip | |
openssl-engine-0.9.6 merge
Diffstat (limited to '')
| -rw-r--r-- | src/lib/libcrypto/util/mklink.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/util/mklink.pl b/src/lib/libcrypto/util/mklink.pl index de555820ec..d7b997ada7 100644 --- a/src/lib/libcrypto/util/mklink.pl +++ b/src/lib/libcrypto/util/mklink.pl | |||
| @@ -49,7 +49,7 @@ my $to = join('/', @to_path); | |||
| 49 | 49 | ||
| 50 | my $file; | 50 | my $file; |
| 51 | foreach $file (@files) { | 51 | foreach $file (@files) { |
| 52 | # print "ln -s $to/$file $from/$file\n"; | 52 | my $err = ""; |
| 53 | symlink("$to/$file", "$from/$file"); | 53 | symlink("$to/$file", "$from/$file") or $err = " [$!]"; |
| 54 | print $file . " => $from/$file\n"; | 54 | print $file . " => $from/$file$err\n"; |
| 55 | } | 55 | } |
