]> git.ipfire.org Git - thirdparty/openssl.git/blame - util/point.sh
Prepare for 1.0.2u-dev
[thirdparty/openssl.git] / util / point.sh
CommitLineData
d02b48c6
RE
1#!/bin/sh
2
49096719 3rm -f "$2"
69a0034e 4if test "$OSTYPE" = msdosdjgpp || test "x$PLATFORM" = xmingw ; then
49096719 5 cp "$1" "$2"
451dc18f 6else
49096719 7 ln -s "$1" "$2"
451dc18f 8fi
bb8f3c58
RE
9echo "$2 => $1"
10