freebsd-dev/crypto/openssl/util/point.sh
Mark Murray 5c87c606cd Vendor import of OpenSSL release 0.9.7. This release includes
support for AES and OpenBSD's hardware crypto.
2003-01-28 21:43:22 +00:00

11 lines
111 B
Bash
Executable File

#!/bin/sh
rm -f $2
if test "$OSTYPE" = msdosdjgpp; then
cp $1 $2
else
ln -s $1 $2
fi
echo "$2 => $1"