diff options
Diffstat (limited to 'crypto/openssl/util/point.sh')
| -rwxr-xr-x | crypto/openssl/util/point.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/crypto/openssl/util/point.sh b/crypto/openssl/util/point.sh index 47543c88e267..ce7dcc56dfa7 100755 --- a/crypto/openssl/util/point.sh +++ b/crypto/openssl/util/point.sh @@ -1,6 +1,10 @@ #!/bin/sh rm -f $2 -ln -s $1 $2 +if test "$OSTYPE" = msdosdjgpp; then + cp $1 $2 +else + ln -s $1 $2 +fi echo "$2 => $1" |
