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