Files
netbsd/crypto/external/bsd/openssl/dist/util/point.sh
2013-04-06 16:48:33 +02:00

11 lines
152 B
Bash
Executable File

#!/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"