]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - crypto/openssl/util/point.sh
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / crypto / openssl / util / point.sh
1 #!/bin/sh
2
3 rm -f "$2"
4 if test "$OSTYPE" = msdosdjgpp || test "x$PLATFORM" = xmingw ; then
5     cp "$1" "$2"
6 else
7     ln -s "$1" "$2"
8 fi
9 echo "$2 => $1"
10