aboutsummaryrefslogtreecommitdiff
path: root/openssl-1.1.0h/util/point.sh
blob: da39899cb19e9c85ce58b1da5f9214fda81a742f (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

rm -f "$2"
if test "$OSTYPE" = msdosdjgpp || test "x$PLATFORM" = xmingw ; then
    cp "$1" "$2"
else
    ln -s "$1" "$2"
fi
echo "$2 => $1"